NPM

npm install

Install packages from package.json file in your directory.

npm start
Starts your Node server

npm install --save <package-name>
Saves the package to your package.json list

Example:
npm install --save youtube-api-search

adds the following to package.json dependencies.

"dependencies": {
"youtube-api-search": "0.0.5"
}

Comments

Popular posts from this blog

ES6 / ES2016 Notes

ReactJS Components