Quick Start
Environment
Node.js
Before getting started, you will need to install Node.js, and ensure that your Node.js version is not lower than v20.19.5. We recommend using the LTS version of Node.js 22.
You can check the currently used Node.js version with the following command:
If you do not have Node.js installed in your current environment, or the installed version is lower than v20.19.5, you can use nvm or fnm to install the required version.
Here is an example of how to install the Node.js 22 LTS version via nvm:
Both nvm and fnm are Node.js version management tools. Relatively speaking, nvm is more mature and stable, while fnm is implemented using Rust, which provides better performance than nvm.
Additionally, after installing nvm or fnm, when there is a .nvmrc file containing lts/jod in the repository's root directory, the system will automatically install or switch to the correct Node.js version upon entering the repository.
pnpm
It is recommended to use pnpm to manage dependencies:
Modern.js also supports dependency management with yarn and npm.
Installation
Initialize
Modern.js provides the @modern-js/create tool to create projects. It does not require global installation and can be run on-demand using npx.
You can create a project in an existing empty directory:
You can also create a project directly in a new directory:
@modern-js/create will directly create the application without providing an interactive Q & A interface:
Now, the project structure is as follows:
Development
Run pnpm run dev in the project to start the project:
Open http://localhost:8080/ in your browser to see the page content.
Configuration
In a Modern.js project created using @modern-js/create, a modern.config.ts file is generated by default.
You can modify the configuration through this file to override the default behavior of Modern.js. For example, to enable SSR, add the following configuration:
After running pnpm run dev again, you can find that the project has completed page rendering on the server in the browser's Network menu.
Core npm Package
In a newly created project, the @modern-js/app-tools npm package is installed by default. It is the core package of the Modern.js framework and provides the following capabilities:
- It offers commonly used CLI commands such as
modern dev,modern build, and more. - It integrates Rsbuild, providing build capabilities.
- It integrates Modern.js Server, providing capabilities for development and production servers.
@modern-js/app-tools is implemented based on the plugin system of Modern.js. Essentially, it is a plugin. Therefore, you need to register appTools in the plugins field of the configuration file:
Build the project
To build the production artifacts of the project, run pnpm run build in the project:
By default, the build artifacts are generated in dist/, with the following directory structure:
If you need to customize the directory of the build artifacts, please refer to Output files.
Verify
Run pnpm run serve in the project to verify whether the build artifacts run normally locally:
Open http://localhost:8080/ in the browser, and the content should be consistent with that of pnpm run dev.
Deployment
After local develop, you can refer to the Deployment section to deploy the project to the server.