11cb0ef41Sopenharmony_ci--- 21cb0ef41Sopenharmony_cititle: npm-ci 31cb0ef41Sopenharmony_cisection: 1 41cb0ef41Sopenharmony_cidescription: Clean install a project 51cb0ef41Sopenharmony_ci--- 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ci### Synopsis 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_ci```bash 101cb0ef41Sopenharmony_cinpm ci 111cb0ef41Sopenharmony_ci 121cb0ef41Sopenharmony_cialiases: clean-install, ic, install-clean, isntall-clean 131cb0ef41Sopenharmony_ci``` 141cb0ef41Sopenharmony_ci 151cb0ef41Sopenharmony_ci### Description 161cb0ef41Sopenharmony_ci 171cb0ef41Sopenharmony_ciThis command is similar to [`npm install`](/commands/npm-install), except 181cb0ef41Sopenharmony_ciit's meant to be used in automated environments such as test platforms, 191cb0ef41Sopenharmony_cicontinuous integration, and deployment -- or any situation where you want 201cb0ef41Sopenharmony_cito make sure you're doing a clean install of your dependencies. 211cb0ef41Sopenharmony_ci 221cb0ef41Sopenharmony_ciThe main differences between using `npm install` and `npm ci` are: 231cb0ef41Sopenharmony_ci 241cb0ef41Sopenharmony_ci* The project **must** have an existing `package-lock.json` or 251cb0ef41Sopenharmony_ci `npm-shrinkwrap.json`. 261cb0ef41Sopenharmony_ci* If dependencies in the package lock do not match those in `package.json`, 271cb0ef41Sopenharmony_ci `npm ci` will exit with an error, instead of updating the package lock. 281cb0ef41Sopenharmony_ci* `npm ci` can only install entire projects at a time: individual 291cb0ef41Sopenharmony_ci dependencies cannot be added with this command. 301cb0ef41Sopenharmony_ci* If a `node_modules` is already present, it will be automatically removed 311cb0ef41Sopenharmony_ci before `npm ci` begins its install. 321cb0ef41Sopenharmony_ci* It will never write to `package.json` or any of the package-locks: 331cb0ef41Sopenharmony_ci installs are essentially frozen. 341cb0ef41Sopenharmony_ci 351cb0ef41Sopenharmony_ciNOTE: If you create your `package-lock.json` file by running `npm install` 361cb0ef41Sopenharmony_ciwith flags that can affect the shape of your dependency tree, such as 371cb0ef41Sopenharmony_ci`--legacy-peer-deps` or `--install-links`, you _must_ provide the same 381cb0ef41Sopenharmony_ciflags to `npm ci` or you are likely to encounter errors. An easy way to do 391cb0ef41Sopenharmony_cithis is to run, for example, 401cb0ef41Sopenharmony_ci`npm config set legacy-peer-deps=true --location=project` and commit the 411cb0ef41Sopenharmony_ci`.npmrc` file to your repo. 421cb0ef41Sopenharmony_ci 431cb0ef41Sopenharmony_ci### Example 441cb0ef41Sopenharmony_ci 451cb0ef41Sopenharmony_ciMake sure you have a package-lock and an up-to-date install: 461cb0ef41Sopenharmony_ci 471cb0ef41Sopenharmony_ci```bash 481cb0ef41Sopenharmony_ci$ cd ./my/npm/project 491cb0ef41Sopenharmony_ci$ npm install 501cb0ef41Sopenharmony_ciadded 154 packages in 10s 511cb0ef41Sopenharmony_ci$ ls | grep package-lock 521cb0ef41Sopenharmony_ci``` 531cb0ef41Sopenharmony_ci 541cb0ef41Sopenharmony_ciRun `npm ci` in that project 551cb0ef41Sopenharmony_ci 561cb0ef41Sopenharmony_ci```bash 571cb0ef41Sopenharmony_ci$ npm ci 581cb0ef41Sopenharmony_ciadded 154 packages in 5s 591cb0ef41Sopenharmony_ci``` 601cb0ef41Sopenharmony_ci 611cb0ef41Sopenharmony_ciConfigure Travis CI to build using `npm ci` instead of `npm install`: 621cb0ef41Sopenharmony_ci 631cb0ef41Sopenharmony_ci```bash 641cb0ef41Sopenharmony_ci# .travis.yml 651cb0ef41Sopenharmony_ciinstall: 661cb0ef41Sopenharmony_ci- npm ci 671cb0ef41Sopenharmony_ci# keep the npm cache around to speed up installs 681cb0ef41Sopenharmony_cicache: 691cb0ef41Sopenharmony_ci directories: 701cb0ef41Sopenharmony_ci - "$HOME/.npm" 711cb0ef41Sopenharmony_ci``` 721cb0ef41Sopenharmony_ci 731cb0ef41Sopenharmony_ci### Configuration 741cb0ef41Sopenharmony_ci 751cb0ef41Sopenharmony_ci#### `install-strategy` 761cb0ef41Sopenharmony_ci 771cb0ef41Sopenharmony_ci* Default: "hoisted" 781cb0ef41Sopenharmony_ci* Type: "hoisted", "nested", "shallow", or "linked" 791cb0ef41Sopenharmony_ci 801cb0ef41Sopenharmony_ciSets the strategy for installing packages in node_modules. hoisted 811cb0ef41Sopenharmony_ci(default): Install non-duplicated in top-level, and duplicated as necessary 821cb0ef41Sopenharmony_ciwithin directory structure. nested: (formerly --legacy-bundling) install in 831cb0ef41Sopenharmony_ciplace, no hoisting. shallow (formerly --global-style) only install direct 841cb0ef41Sopenharmony_cideps at top-level. linked: (experimental) install in node_modules/.store, 851cb0ef41Sopenharmony_cilink in place, unhoisted. 861cb0ef41Sopenharmony_ci 871cb0ef41Sopenharmony_ci 881cb0ef41Sopenharmony_ci 891cb0ef41Sopenharmony_ci#### `legacy-bundling` 901cb0ef41Sopenharmony_ci 911cb0ef41Sopenharmony_ci* Default: false 921cb0ef41Sopenharmony_ci* Type: Boolean 931cb0ef41Sopenharmony_ci* DEPRECATED: This option has been deprecated in favor of 941cb0ef41Sopenharmony_ci `--install-strategy=nested` 951cb0ef41Sopenharmony_ci 961cb0ef41Sopenharmony_ciInstead of hoisting package installs in `node_modules`, install packages in 971cb0ef41Sopenharmony_cithe same manner that they are depended on. This may cause very deep 981cb0ef41Sopenharmony_cidirectory structures and duplicate package installs as there is no 991cb0ef41Sopenharmony_cide-duplicating. Sets `--install-strategy=nested`. 1001cb0ef41Sopenharmony_ci 1011cb0ef41Sopenharmony_ci 1021cb0ef41Sopenharmony_ci 1031cb0ef41Sopenharmony_ci#### `global-style` 1041cb0ef41Sopenharmony_ci 1051cb0ef41Sopenharmony_ci* Default: false 1061cb0ef41Sopenharmony_ci* Type: Boolean 1071cb0ef41Sopenharmony_ci* DEPRECATED: This option has been deprecated in favor of 1081cb0ef41Sopenharmony_ci `--install-strategy=shallow` 1091cb0ef41Sopenharmony_ci 1101cb0ef41Sopenharmony_ciOnly install direct dependencies in the top level `node_modules`, but hoist 1111cb0ef41Sopenharmony_cion deeper dependencies. Sets `--install-strategy=shallow`. 1121cb0ef41Sopenharmony_ci 1131cb0ef41Sopenharmony_ci 1141cb0ef41Sopenharmony_ci 1151cb0ef41Sopenharmony_ci#### `omit` 1161cb0ef41Sopenharmony_ci 1171cb0ef41Sopenharmony_ci* Default: 'dev' if the `NODE_ENV` environment variable is set to 1181cb0ef41Sopenharmony_ci 'production', otherwise empty. 1191cb0ef41Sopenharmony_ci* Type: "dev", "optional", or "peer" (can be set multiple times) 1201cb0ef41Sopenharmony_ci 1211cb0ef41Sopenharmony_ciDependency types to omit from the installation tree on disk. 1221cb0ef41Sopenharmony_ci 1231cb0ef41Sopenharmony_ciNote that these dependencies _are_ still resolved and added to the 1241cb0ef41Sopenharmony_ci`package-lock.json` or `npm-shrinkwrap.json` file. They are just not 1251cb0ef41Sopenharmony_ciphysically installed on disk. 1261cb0ef41Sopenharmony_ci 1271cb0ef41Sopenharmony_ciIf a package type appears in both the `--include` and `--omit` lists, then 1281cb0ef41Sopenharmony_ciit will be included. 1291cb0ef41Sopenharmony_ci 1301cb0ef41Sopenharmony_ciIf the resulting omit list includes `'dev'`, then the `NODE_ENV` environment 1311cb0ef41Sopenharmony_civariable will be set to `'production'` for all lifecycle scripts. 1321cb0ef41Sopenharmony_ci 1331cb0ef41Sopenharmony_ci 1341cb0ef41Sopenharmony_ci 1351cb0ef41Sopenharmony_ci#### `include` 1361cb0ef41Sopenharmony_ci 1371cb0ef41Sopenharmony_ci* Default: 1381cb0ef41Sopenharmony_ci* Type: "prod", "dev", "optional", or "peer" (can be set multiple times) 1391cb0ef41Sopenharmony_ci 1401cb0ef41Sopenharmony_ciOption that allows for defining which types of dependencies to install. 1411cb0ef41Sopenharmony_ci 1421cb0ef41Sopenharmony_ciThis is the inverse of `--omit=<type>`. 1431cb0ef41Sopenharmony_ci 1441cb0ef41Sopenharmony_ciDependency types specified in `--include` will not be omitted, regardless of 1451cb0ef41Sopenharmony_cithe order in which omit/include are specified on the command-line. 1461cb0ef41Sopenharmony_ci 1471cb0ef41Sopenharmony_ci 1481cb0ef41Sopenharmony_ci 1491cb0ef41Sopenharmony_ci#### `strict-peer-deps` 1501cb0ef41Sopenharmony_ci 1511cb0ef41Sopenharmony_ci* Default: false 1521cb0ef41Sopenharmony_ci* Type: Boolean 1531cb0ef41Sopenharmony_ci 1541cb0ef41Sopenharmony_ciIf set to `true`, and `--legacy-peer-deps` is not set, then _any_ 1551cb0ef41Sopenharmony_ciconflicting `peerDependencies` will be treated as an install failure, even 1561cb0ef41Sopenharmony_ciif npm could reasonably guess the appropriate resolution based on non-peer 1571cb0ef41Sopenharmony_cidependency relationships. 1581cb0ef41Sopenharmony_ci 1591cb0ef41Sopenharmony_ciBy default, conflicting `peerDependencies` deep in the dependency graph will 1601cb0ef41Sopenharmony_cibe resolved using the nearest non-peer dependency specification, even if 1611cb0ef41Sopenharmony_cidoing so will result in some packages receiving a peer dependency outside 1621cb0ef41Sopenharmony_cithe range set in their package's `peerDependencies` object. 1631cb0ef41Sopenharmony_ci 1641cb0ef41Sopenharmony_ciWhen such an override is performed, a warning is printed, explaining the 1651cb0ef41Sopenharmony_ciconflict and the packages involved. If `--strict-peer-deps` is set, then 1661cb0ef41Sopenharmony_cithis warning is treated as a failure. 1671cb0ef41Sopenharmony_ci 1681cb0ef41Sopenharmony_ci 1691cb0ef41Sopenharmony_ci 1701cb0ef41Sopenharmony_ci#### `foreground-scripts` 1711cb0ef41Sopenharmony_ci 1721cb0ef41Sopenharmony_ci* Default: `false` unless when using `npm pack` or `npm publish` where it 1731cb0ef41Sopenharmony_ci defaults to `true` 1741cb0ef41Sopenharmony_ci* Type: Boolean 1751cb0ef41Sopenharmony_ci 1761cb0ef41Sopenharmony_ciRun all build scripts (ie, `preinstall`, `install`, and `postinstall`) 1771cb0ef41Sopenharmony_ciscripts for installed packages in the foreground process, sharing standard 1781cb0ef41Sopenharmony_ciinput, output, and error with the main npm process. 1791cb0ef41Sopenharmony_ci 1801cb0ef41Sopenharmony_ciNote that this will generally make installs run slower, and be much noisier, 1811cb0ef41Sopenharmony_cibut can be useful for debugging. 1821cb0ef41Sopenharmony_ci 1831cb0ef41Sopenharmony_ci 1841cb0ef41Sopenharmony_ci 1851cb0ef41Sopenharmony_ci#### `ignore-scripts` 1861cb0ef41Sopenharmony_ci 1871cb0ef41Sopenharmony_ci* Default: false 1881cb0ef41Sopenharmony_ci* Type: Boolean 1891cb0ef41Sopenharmony_ci 1901cb0ef41Sopenharmony_ciIf true, npm does not run scripts specified in package.json files. 1911cb0ef41Sopenharmony_ci 1921cb0ef41Sopenharmony_ciNote that commands explicitly intended to run a particular script, such as 1931cb0ef41Sopenharmony_ci`npm start`, `npm stop`, `npm restart`, `npm test`, and `npm run-script` 1941cb0ef41Sopenharmony_ciwill still run their intended script if `ignore-scripts` is set, but they 1951cb0ef41Sopenharmony_ciwill *not* run any pre- or post-scripts. 1961cb0ef41Sopenharmony_ci 1971cb0ef41Sopenharmony_ci 1981cb0ef41Sopenharmony_ci 1991cb0ef41Sopenharmony_ci#### `audit` 2001cb0ef41Sopenharmony_ci 2011cb0ef41Sopenharmony_ci* Default: true 2021cb0ef41Sopenharmony_ci* Type: Boolean 2031cb0ef41Sopenharmony_ci 2041cb0ef41Sopenharmony_ciWhen "true" submit audit reports alongside the current npm command to the 2051cb0ef41Sopenharmony_cidefault registry and all registries configured for scopes. See the 2061cb0ef41Sopenharmony_cidocumentation for [`npm audit`](/commands/npm-audit) for details on what is 2071cb0ef41Sopenharmony_cisubmitted. 2081cb0ef41Sopenharmony_ci 2091cb0ef41Sopenharmony_ci 2101cb0ef41Sopenharmony_ci 2111cb0ef41Sopenharmony_ci#### `bin-links` 2121cb0ef41Sopenharmony_ci 2131cb0ef41Sopenharmony_ci* Default: true 2141cb0ef41Sopenharmony_ci* Type: Boolean 2151cb0ef41Sopenharmony_ci 2161cb0ef41Sopenharmony_ciTells npm to create symlinks (or `.cmd` shims on Windows) for package 2171cb0ef41Sopenharmony_ciexecutables. 2181cb0ef41Sopenharmony_ci 2191cb0ef41Sopenharmony_ciSet to false to have it not do this. This can be used to work around the 2201cb0ef41Sopenharmony_cifact that some file systems don't support symlinks, even on ostensibly Unix 2211cb0ef41Sopenharmony_cisystems. 2221cb0ef41Sopenharmony_ci 2231cb0ef41Sopenharmony_ci 2241cb0ef41Sopenharmony_ci 2251cb0ef41Sopenharmony_ci#### `fund` 2261cb0ef41Sopenharmony_ci 2271cb0ef41Sopenharmony_ci* Default: true 2281cb0ef41Sopenharmony_ci* Type: Boolean 2291cb0ef41Sopenharmony_ci 2301cb0ef41Sopenharmony_ciWhen "true" displays the message at the end of each `npm install` 2311cb0ef41Sopenharmony_ciacknowledging the number of dependencies looking for funding. See [`npm 2321cb0ef41Sopenharmony_cifund`](/commands/npm-fund) for details. 2331cb0ef41Sopenharmony_ci 2341cb0ef41Sopenharmony_ci 2351cb0ef41Sopenharmony_ci 2361cb0ef41Sopenharmony_ci#### `dry-run` 2371cb0ef41Sopenharmony_ci 2381cb0ef41Sopenharmony_ci* Default: false 2391cb0ef41Sopenharmony_ci* Type: Boolean 2401cb0ef41Sopenharmony_ci 2411cb0ef41Sopenharmony_ciIndicates that you don't want npm to make any changes and that it should 2421cb0ef41Sopenharmony_cionly report what it would have done. This can be passed into any of the 2431cb0ef41Sopenharmony_cicommands that modify your local installation, eg, `install`, `update`, 2441cb0ef41Sopenharmony_ci`dedupe`, `uninstall`, as well as `pack` and `publish`. 2451cb0ef41Sopenharmony_ci 2461cb0ef41Sopenharmony_ciNote: This is NOT honored by other network related commands, eg `dist-tags`, 2471cb0ef41Sopenharmony_ci`owner`, etc. 2481cb0ef41Sopenharmony_ci 2491cb0ef41Sopenharmony_ci 2501cb0ef41Sopenharmony_ci 2511cb0ef41Sopenharmony_ci#### `workspace` 2521cb0ef41Sopenharmony_ci 2531cb0ef41Sopenharmony_ci* Default: 2541cb0ef41Sopenharmony_ci* Type: String (can be set multiple times) 2551cb0ef41Sopenharmony_ci 2561cb0ef41Sopenharmony_ciEnable running a command in the context of the configured workspaces of the 2571cb0ef41Sopenharmony_cicurrent project while filtering by running only the workspaces defined by 2581cb0ef41Sopenharmony_cithis configuration option. 2591cb0ef41Sopenharmony_ci 2601cb0ef41Sopenharmony_ciValid values for the `workspace` config are either: 2611cb0ef41Sopenharmony_ci 2621cb0ef41Sopenharmony_ci* Workspace names 2631cb0ef41Sopenharmony_ci* Path to a workspace directory 2641cb0ef41Sopenharmony_ci* Path to a parent workspace directory (will result in selecting all 2651cb0ef41Sopenharmony_ci workspaces within that folder) 2661cb0ef41Sopenharmony_ci 2671cb0ef41Sopenharmony_ciWhen set for the `npm init` command, this may be set to the folder of a 2681cb0ef41Sopenharmony_ciworkspace which does not yet exist, to create the folder and set it up as a 2691cb0ef41Sopenharmony_cibrand new workspace within the project. 2701cb0ef41Sopenharmony_ci 2711cb0ef41Sopenharmony_ciThis value is not exported to the environment for child processes. 2721cb0ef41Sopenharmony_ci 2731cb0ef41Sopenharmony_ci#### `workspaces` 2741cb0ef41Sopenharmony_ci 2751cb0ef41Sopenharmony_ci* Default: null 2761cb0ef41Sopenharmony_ci* Type: null or Boolean 2771cb0ef41Sopenharmony_ci 2781cb0ef41Sopenharmony_ciSet to true to run the command in the context of **all** configured 2791cb0ef41Sopenharmony_ciworkspaces. 2801cb0ef41Sopenharmony_ci 2811cb0ef41Sopenharmony_ciExplicitly setting this to false will cause commands like `install` to 2821cb0ef41Sopenharmony_ciignore workspaces altogether. When not set explicitly: 2831cb0ef41Sopenharmony_ci 2841cb0ef41Sopenharmony_ci- Commands that operate on the `node_modules` tree (install, update, etc.) 2851cb0ef41Sopenharmony_ciwill link workspaces into the `node_modules` folder. - Commands that do 2861cb0ef41Sopenharmony_ciother things (test, exec, publish, etc.) will operate on the root project, 2871cb0ef41Sopenharmony_ci_unless_ one or more workspaces are specified in the `workspace` config. 2881cb0ef41Sopenharmony_ci 2891cb0ef41Sopenharmony_ciThis value is not exported to the environment for child processes. 2901cb0ef41Sopenharmony_ci 2911cb0ef41Sopenharmony_ci#### `include-workspace-root` 2921cb0ef41Sopenharmony_ci 2931cb0ef41Sopenharmony_ci* Default: false 2941cb0ef41Sopenharmony_ci* Type: Boolean 2951cb0ef41Sopenharmony_ci 2961cb0ef41Sopenharmony_ciInclude the workspace root when workspaces are enabled for a command. 2971cb0ef41Sopenharmony_ci 2981cb0ef41Sopenharmony_ciWhen false, specifying individual workspaces via the `workspace` config, or 2991cb0ef41Sopenharmony_ciall workspaces via the `workspaces` flag, will cause npm to operate only on 3001cb0ef41Sopenharmony_cithe specified workspaces, and not on the root project. 3011cb0ef41Sopenharmony_ci 3021cb0ef41Sopenharmony_ciThis value is not exported to the environment for child processes. 3031cb0ef41Sopenharmony_ci 3041cb0ef41Sopenharmony_ci#### `install-links` 3051cb0ef41Sopenharmony_ci 3061cb0ef41Sopenharmony_ci* Default: false 3071cb0ef41Sopenharmony_ci* Type: Boolean 3081cb0ef41Sopenharmony_ci 3091cb0ef41Sopenharmony_ciWhen set file: protocol dependencies will be packed and installed as regular 3101cb0ef41Sopenharmony_cidependencies instead of creating a symlink. This option has no effect on 3111cb0ef41Sopenharmony_ciworkspaces. 3121cb0ef41Sopenharmony_ci 3131cb0ef41Sopenharmony_ci 3141cb0ef41Sopenharmony_ci 3151cb0ef41Sopenharmony_ci### See Also 3161cb0ef41Sopenharmony_ci 3171cb0ef41Sopenharmony_ci* [npm install](/commands/npm-install) 3181cb0ef41Sopenharmony_ci* [package-lock.json](/configuring-npm/package-lock-json) 319