1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-31 02:18:01 +01:00

Add npm -g option

This commit is contained in:
Son A. Pham 2015-12-29 22:46:40 -06:00 committed by Son Pham
parent cee926a196
commit 36f1b3ec72

View file

@ -10,6 +10,10 @@
`npm install`
- Download and install a module globally
`npm install -g {{module_name}}`
- Download a given dependency, and add it to the package.json
`npm install {{module_name}}@{{version}} --save`