Getting Started
After download a source package From our Store.
Install Node.js From https://nodejs.org/en/download/
After that open command promt or any other terminal and go to Package Path.
cd [root] / app /
Npm is a default package manager for the JavaScript runtime environment Node.js. If you've already then update once.
npm install --global npm@latest
To check weather is node succesfully install or not.
npm --version
For yarn package manager.
npm install --global yarn
To check weather is yarn succesfully install or not.
yarn --version
Now, run the below command(This command will install the necessary libraries in node_modules folder which is generated by this command):
npm install
Normally project will run on the localhost:3000 or it will take port accordingly and for run the project run the below command:
npm run dev
How to Install npm dependencies?
In your root folder enter the following command to install the project
dependencies:
npm install, this command will install all the template libraries inside the
node_modules folder.
How to Install npm packages?
npm install packagename, this command will install the package in node modules.