Repository files navigation
Steps to Run the code for the first time or whenever you take a Pull
Open a Terminal/Cmd in the project folder
Install the npm packages by running the following command
npm install
This step is very important. If you don't do this, you may run into error of missing dependencies
Start the server by running
npm start
A new window will open in your default browser at
localhost:3000
How to install a dependency and add it in package.json file
This will save the depedency in package.json file so that others can install it on their system before running the code.
run the following command to save a package as a dependency
npm install --save *dependency_name*
These are those dependencies which are required at runtime as well as during development.
run the following command to save a package as a dev dependency
npm install --save-dev *dependency_name*
These are those dependencies which are only required during development.
About
Official website frontend
Topics
Resources
License
Stars
Watchers
Forks
You can’t perform that action at this time.