Start Building
Install our theme is more easy and quickly.
There are followings basics packages you should install before go further.
A. Installation
Install Node.js and NPM : Download Node.js from https://nodejs.org/en/download/ and install it on your system. NPM comes bundled with Node.js
Install npm packages : In terminal go to your project theme directory and run
npm installcommand, it will download all the dependencies under node_modules folder.
B. Running development server
Run
npm startcommand to run dev server and accesshttp://localhost:3000/to run your app/project on browser. The app will automatically reload if you change any of the source files.As
npm startruns watch command which detects any change in project files so it will automatically reload your app on browser if you make changes in files.
C. Production building
Run
npm run buildto build the project. The build artifacts will be storedbuild/directory.
Further help
To get more help https://reactjs.org/docs/getting-started.html​
Last updated
Was this helpful?