1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 06:02:18 +02:00

Merge pull request #480 from sonph/patch-1

Add npm -g option
This commit is contained in:
Leandro Ostera 2015-12-30 21:22:17 +01:00
commit ca2378a30a

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`