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`:
|
|
|
|
|
2025-03-07 13:48:24 +02:00
|
|
|
`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:
|
|
|
|
|
2025-03-08 23:08:23 +02:00
|
|
|
`npm install {{[-g|--global]}} {{package_name}}`
|