Skip to content

Instantly share code, notes, and snippets.

View fernandocanizo's full-sized avatar
🎃
Working from home

Fernando Lucio Canizo fernandocanizo

🎃
Working from home
View GitHub Profile
@fernandocanizo
fernandocanizo / node.js.tools.and.libraries.txt
Created May 23, 2015 03:44
Node.js tools and libraries
# Node.js tools and libraries
## Tools
- Monitor for any changes in your source code and automatically restart your server
In development:
```
sudo npm install -g nodemon
# npm basics
- Install packages locally under node_modules directory:
```
npm install <package_name>
```
- Install packages globally, useful for applications:
```
sudo npm install -g <package_name>