mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-10-31 02:18:01 +01:00
Update npm.md
This commit is contained in:
parent
9dc3893c59
commit
9f182ee686
1 changed files with 2 additions and 2 deletions
|
@ -11,11 +11,11 @@
|
|||
|
||||
`npm install`
|
||||
|
||||
- Download a given dependency, and add it to the package.json (as `dependencies`):
|
||||
- Download a given dependency required for the application to run, and add it to the package.json:
|
||||
|
||||
`npm install {{module_name}}@{{version}} --save`
|
||||
|
||||
- Download a given dependency, and add it to the package.json (as `devDependencies`):
|
||||
- Download a given dependency for development purposes, and add it to the package.json:
|
||||
|
||||
`npm install {{module_name}}@{{version}} --save-dev`
|
||||
|
||||
|
|
Loading…
Reference in a new issue