tldr/pages/common/npm.md

38 lines
915 B
Markdown
Raw Normal View History

2014-03-04 01:43:17 +00:00
# npm
> JavaScript and Node.js package manager.
> Manage Node.js projects and their module dependencies.
> More information: <https://www.npmjs.com>.
2014-03-04 01:43:17 +00:00
- Interactively create a `package.json` file:
2015-12-30 04:46:40 +00:00
`npm init`
2015-12-30 04:46:40 +00:00
- Download all the packages listed as dependencies in package.json:
2016-01-30 16:15:22 +00:00
`npm install`
- Download a specific version of a package and add it to the list of dependencies in `package.json`:
`npm install {{module_name}}@{{version}}`
- Download a package and add it to the list of dev dependencies in `package.json`:
2014-03-04 01:43:17 +00:00
`npm install {{module_name}} --save-dev`
2014-03-04 01:43:17 +00:00
- Download a package and install it globally:
`npm install --global {{module_name}}`
- Uninstall a package and remove it from the list of dependencies in `package.json`:
2014-03-04 01:43:17 +00:00
`npm uninstall {{module_name}}`
2014-03-04 01:43:17 +00:00
- Print a tree of locally installed dependencies:
2014-03-04 01:43:17 +00:00
`npm list`
2015-12-30 13:10:04 +00:00
- List top-level globally installed modules:
`npm list --global --depth={{0}}`