Quick Start
Installation (Run following commands)
1. Bun (Recommended for Linux/MacOS)
Command | Description |
---|---|
bun i | This would install all required dependencies in node_modules folder. |
bun dev | Runs the project locally, starts the development server. |
bun run build | It bundles with production mode. Your app is now ready to be deployed. |
bun run start | It previewed (serve) production build version. |
2. Yarn (Recommended for Windows)
Command | Description |
---|---|
yarn i | This would install all required dependencies in node_modules folder. |
yarn dev | Runs the project locally, starts the development server. |
yarn run build | It bundles with production mode. Your app is now ready to be deployed. |
yarn start | It previewed (serve) production build version. |
3. NPM
Command | Description |
---|---|
npm i | This would install all required dependencies in node_modules folder. |
npm run dev | Runs the project locally, starts the development server. |
npm run build | It bundles with production mode. Your app is now ready to be deployed. |
npm run start | It previewed (serve) production build version. |
Installation (Run following commands)
1. Bun (Recommended for Linux/MacOS)
Command | Description |
---|---|
bun i | This would install all required dependencies in node_modules folder. |
bun dev | Runs the project locally, starts the development server. |
bun run build | It bundles with production mode. Your app is now ready to be deployed. |
bun run preview | It previewed (serve) production build version. |
2. Yarn (Recommended for Windows)
Command | Description |
---|---|
yarn i | This would install all required dependencies in node_modules folder. |
yarn dev | Runs the project locally, starts the development server. |
yarn run build | It bundles with production mode. Your app is now ready to be deployed. |
yarn preview | It previewed (serve) production build version. |
3. NPM
Command | Description |
---|---|
npm i | This would install all required dependencies in node_modules folder. |
npm run dev | Runs the project locally, starts the development server. |
npm run build | It bundles with production mode. Your app is now ready to be deployed. |
npm run preview | It previewed (serve) production build version. |