Getting Started
Download a Package Source 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] / react-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 start
/themes-p/Porto-react-template/app/ and
/ for local. Change basename according to
production environment. We also added
.htaccess for production.
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.



