mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 10:44:55 +02:00
Merge pull request #866 from livioso/patch-1
Add npm install --save-dev 🐖
This commit is contained in:
commit
c4d351e69b
1 changed files with 5 additions and 1 deletions
|
@ -11,10 +11,14 @@
|
||||||
|
|
||||||
`npm install`
|
`npm install`
|
||||||
|
|
||||||
- Download a given dependency, and add it to the package.json:
|
- Download a given dependency required for the application to run, and add it to the package.json:
|
||||||
|
|
||||||
`npm install {{module_name}}@{{version}} --save`
|
`npm install {{module_name}}@{{version}} --save`
|
||||||
|
|
||||||
|
- Download a given dependency for development purposes, and add it to the package.json:
|
||||||
|
|
||||||
|
`npm install {{module_name}}@{{version}} --save-dev`
|
||||||
|
|
||||||
- Uninstall a module:
|
- Uninstall a module:
|
||||||
|
|
||||||
`npm uninstall {{module_name}}`
|
`npm uninstall {{module_name}}`
|
||||||
|
|
Loading…
Add table
Reference in a new issue