create-catalyst-app
v0.0.1-beta.8
Published
cli package to scaffold Catalyst application
Downloads
28
Readme
Creating a Catalyst App
Scaffold your Catalyst app swiftly with create-catalyst-app
. This tool expedites the process by initializing your project with predefined configurations. To kickstart your project, execute the following command:
npx create-catalyst-app@latest
Upon execution, you'll be prompted to name your project. Once named, a template will be cloned into the specified directory.
✔ What is your project named? my-app
Next, select your preferred state management tool from the provided options.
? Choose state management: › - Use arrow-keys. Return to submit .
❯ Redux
Redux Toolkit (RTK)
None
Following your selection, a default template will be cloned into the directory, and all necessary packages will be installed.
Getting Started
Commence development by initiating the application in development mode with the following commands:
Navigate into the directory
cd my-app
For running the application in development mode, run:
npm run start
For a production build, change NODE_ENV to "production" in config/config.json, and then run :
npm run build
To serve the production build, execute:
npm run serve
Documentation
Explore the complete documentation at https://catalyst.1mg.com.