1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/npm-install.md

21 lines
599 B
Markdown
Raw Normal View History

2024-10-16 07:19:54 +03:00
# npm install
2024-11-16 13:06:27 +01:00
> Install Node packages.
2024-10-16 07:19:54 +03:00
> More information: <https://docs.npmjs.com/cli/commands/npm-install>.
2024-11-16 13:06:27 +01:00
- Install dependencies listed in `package.json`:
2024-10-16 07:19:54 +03:00
`npm install`
- Download a specific version of a package and add it to the list of dependencies in `package.json`:
`npm install {{package_name}}@{{version}}`
- Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
`npm install {{package_name}} {{[-D|--save-dev]}}`
2024-10-16 07:19:54 +03:00
- Download the latest version of a package and install it globally:
`npm install {{[-g|--global]}} {{package_name}}`