1 ---
2 title: npm-audit
3 section: 1
4 description: Run a security audit
5 github_repo: npm/cli
6 github_branch: release/v10
7 github_path: docs/lib/content/commands/npm-audit.md
8 redirect_from:
9 - /cli-documentation/v10/audit
10 - /cli-documentation/v10/cli-commands/audit
11 - /cli-documentation/v10/cli-commands/npm-audit
12 - /cli-documentation/v10/commands/audit
13 - /cli-documentation/v10/commands/npm-audit
14 - /cli-documentation/v10/npm-audit
15 - /cli/v10/audit
16 - /cli/v10/cli-commands/audit
17 - /cli/v10/cli-commands/npm-audit
18 - /cli/v10/commands/audit
19 - /cli/v10/npm-audit
20 ---
21
22 ### Synopsis
23
24 ```bash
25 npm audit [fix|signatures]
26 ```
27
28 ### Description
29
30 The audit command submits a description of the dependencies configured in your project to your default registry and asks for a report of known vulnerabilities. If any vulnerabilities are found, then the impact and appropriate remediation will be calculated. If the `fix` argument is provided, then remediations will be applied to the package tree.
31
32 The command will exit with a 0 exit code if no vulnerabilities were found.
33
34 Note that some vulnerabilities cannot be fixed automatically and will require manual intervention or review. Also note that since `npm audit fix` runs a full-fledged `npm install` under the hood, all configs that apply to the installer will also apply to `npm install` -- so things like `npm audit fix --package-lock-only` will work as expected.
35
36 By default, the audit command will exit with a non-zero code if any vulnerability is found. It may be useful in CI environments to include the `--audit-level` parameter to specify the minimum vulnerability level that will cause the command to fail. This option does not filter the report output, it simply changes the command's failure threshold.
37
38 ### Package lock
39
40 By default npm requires a package-lock or shrinkwrap in order to run the audit. You can bypass the package lock with `--no-package-lock` but be aware the results may be different with every run, since npm will re-build the dependency tree each time.
41
42 ### Audit Signatures
43
44 To ensure the integrity of packages you download from the public npm registry, or any registry that supports signatures, you can verify the registry signatures of downloaded packages using the npm CLI.
45
46 Registry signatures can be verified using the following `audit` command:
47
48 ```bash
49 $ npm audit signatures
50 ```
51
52 The `audit signatures` command will also verify the provenance attestations of downloaded packages. Because provenance attestations are such a new feature, security features may be added to (or changed in) the attestation format over time. To ensure that you're always able to verify attestation signatures check that you're running the latest version of the npm CLI. Please note this often means updating npm beyond the version that ships with Node.js.
53
54 The npm CLI supports registry signatures and signing keys provided by any registry if the following conventions are followed:
55
56 1. Signatures are provided in the package's `packument` in each published version within the `dist` object:
57
58 ```json
59 "dist":{
60 "..omitted..": "..omitted..",
61 "signatures": [{
62 "keyid": "SHA256:{{SHA256_PUBLIC_KEY}}",
63 "sig": "a312b9c3cb4a1b693e8ebac5ee1ca9cc01f2661c14391917dcb111517f72370809..."
64 }]
65 }
66 ```
67
68 See this [example](https://registry.npmjs.org/light-cycle/1.4.3) of a signed package from the public npm registry.
69
70 The `sig` is generated using the following template: `${package.name}@${package.version}:${package.dist.integrity}` and the `keyid` has to match one of the public signing keys below.
71
72 2. Public signing keys are provided at `registry-host.tld/-/npm/v1/keys` in the following format:
73
74 ```
75 {
76 "keys": [{
77 "expires": null,
78 "keyid": "SHA256:{{SHA256_PUBLIC_KEY}}",
79 "keytype": "ecdsa-sha2-nistp256",
80 "scheme": "ecdsa-sha2-nistp256",
81 "key": "{{B64_PUBLIC_KEY}}"
82 }]
83 }
84 ```
85
86 Keys response:
87
88 - `expires`: null or a simplified extended [ISO 8601 format](https://en.wikipedia.org/wiki/ISO_8601): `YYYY-MM-DDTHH:mm:ss.sssZ`
89 - `keydid`: sha256 fingerprint of the public key
90 - `keytype`: only `ecdsa-sha2-nistp256` is currently supported by the npm CLI
91 - `scheme`: only `ecdsa-sha2-nistp256` is currently supported by the npm CLI
92 - `key`: base64 encoded public key
93
94 See this [example key's response from the public npm registry](https://registry.npmjs.org/-/npm/v1/keys).
95
96 ### Audit Endpoints
97
98 There are two audit endpoints that npm may use to fetch vulnerability information: the `Bulk Advisory` endpoint and the `Quick Audit` endpoint.
99
100 #### Bulk Advisory Endpoint
101
102 As of version 7, npm uses the much faster `Bulk Advisory` endpoint to optimize the speed of calculating audit results.
103
104 npm will generate a JSON payload with the name and list of versions of each package in the tree, and POST it to the default configured registry at the path `/-/npm/v1/security/advisories/bulk`.
105
106 Any packages in the tree that do not have a `version` field in their package.json file will be ignored. If any `--omit` options are specified (either via the [`--omit` config](/cli/v10/using-npm/config#omit), or one of the shorthands such as `--production`, `--only=dev`, and so on), then packages will be omitted from the submitted payload as appropriate.
107
108 If the registry responds with an error, or with an invalid response, then npm will attempt to load advisory data from the `Quick Audit` endpoint.
109
110 The expected result will contain a set of advisory objects for each dependency that matches the advisory range. Each advisory object contains a `name`, `url`, `id`, `severity`, `vulnerable_versions`, and `title`.
111
112 npm then uses these advisory objects to calculate vulnerabilities and meta-vulnerabilities of the dependencies within the tree.
113
114 #### Quick Audit Endpoint
115
116 If the `Bulk Advisory` endpoint returns an error, or invalid data, npm will attempt to load advisory data from the `Quick Audit` endpoint, which is considerably slower in most cases.
117
118 The full package tree as found in `package-lock.json` is submitted, along with the following pieces of additional metadata:
119
120 - `npm_version`
121 - `node_version`
122 - `platform`
123 - `arch`
124 - `node_env`
125
126 All packages in the tree are submitted to the Quick Audit endpoint. Omitted dependency types are skipped when generating the report.
127
128 #### Scrubbing
129
130 Out of an abundance of caution, npm versions 5 and 6 would "scrub" any packages from the submitted report if their name contained a `/` character, so as to avoid leaking the names of potentially private packages or git URLs.
131
132 However, in practice, this resulted in audits often failing to properly detect meta-vulnerabilities, because the tree would appear to be invalid due to missing dependencies, and prevented the detection of vulnerabilities in package trees that used git dependencies or private modules.
133
134 This scrubbing has been removed from npm as of version 7.
135
136 #### Calculating Meta-Vulnerabilities and Remediations
137
138 npm uses the [`@npmcli/metavuln-calculator`](http://npm.im/@npmcli/metavuln-calculator) module to turn a set of security advisories into a set of "vulnerability" objects. A "meta-vulnerability" is a dependency that is vulnerable by virtue of dependence on vulnerable versions of a vulnerable package.
139
140 For example, if the package `foo` is vulnerable in the range `>=1.0.2 <2.0.0`, and the package `bar` depends on `foo@^1.1.0`, then that version of `bar` can only be installed by installing a vulnerable version of `foo`. In this case, `bar` is a "metavulnerability".
141
142 Once metavulnerabilities for a given package are calculated, they are cached in the `~/.npm` folder and only re-evaluated if the advisory range changes, or a new version of the package is published (in which case, the new version is checked for metavulnerable status as well).
143
144 If the chain of metavulnerabilities extends all the way to the root project, and it cannot be updated without changing its dependency ranges, then `npm audit fix` will require the `--force` option to apply the remediation. If remediations do not require changes to the dependency ranges, then all vulnerable packages will be updated to a version that does not have an advisory or metavulnerability posted against it.
145
146 ### Exit Code
147
148 The `npm audit` command will exit with a 0 exit code if no vulnerabilities were found. The `npm audit fix` command will exit with 0 exit code if no vulnerabilities are found _or_ if the remediation is able to successfully fix all vulnerabilities.
149
150 If vulnerabilities were found the exit code will depend on the [`audit-level` config](/cli/v10/using-npm/config#audit-level).
151
152 ### Examples
153
154 Scan your project for vulnerabilities and automatically install any compatible updates to vulnerable dependencies:
155
156 ```bash
157 $ npm audit fix
158 ```
159
160 Run `audit fix` without modifying `node_modules`, but still updating the pkglock:
161
162 ```bash
163 $ npm audit fix --package-lock-only
164 ```
165
166 Skip updating `devDependencies`:
167
168 ```bash
169 $ npm audit fix --only=prod
170 ```
171
172 Have `audit fix` install SemVer-major updates to toplevel dependencies, not just SemVer-compatible ones:
173
174 ```bash
175 $ npm audit fix --force
176 ```
177
178 Do a dry run to get an idea of what `audit fix` will do, and _also_ output install information in JSON format:
179
180 ```bash
181 $ npm audit fix --dry-run --json
182 ```
183
184 Scan your project for vulnerabilities and just show the details, without fixing anything:
185
186 ```bash
187 $ npm audit
188 ```
189
190 Get the detailed audit report in JSON format:
191
192 ```bash
193 $ npm audit --json
194 ```
195
196 Fail an audit only if the results include a vulnerability with a level of moderate or higher:
197
198 ```bash
199 $ npm audit --audit-level=moderate
200 ```
201
202 ### Configuration
203
204 #### `audit-level`
205
206 - Default: null
207 - Type: null, "info", "low", "moderate", "high", "critical", or "none"
208
209 The minimum level of vulnerability for `npm audit` to exit with a non-zero exit code.
210
211 #### `dry-run`
212
213 - Default: false
214 - Type: Boolean
215
216 Indicates that you don't want npm to make any changes and that it should only report what it would have done. This can be passed into any of the commands that modify your local installation, eg, `install`, `update`, `dedupe`, `uninstall`, as well as `pack` and `publish`.
217
218 Note: This is NOT honored by other network related commands, eg `dist-tags`, `owner`, etc.
219
220 #### `force`
221
222 - Default: false
223 - Type: Boolean
224
225 Removes various protections against unfortunate side effects, common mistakes, unnecessary performance degradation, and malicious input.
226
227 - Allow clobbering non-npm files in global installs.
228 - Allow the `npm version` command to work on an unclean git repository.
229 - Allow deleting the cache folder with `npm cache clean`.
230 - Allow installing packages that have an `engines` declaration requiring a different version of npm.
231 - Allow installing packages that have an `engines` declaration requiring a different version of `node`, even if `--engine-strict` is enabled.
232 - Allow `npm audit fix` to install modules outside your stated dependency range (including SemVer-major changes).
233 - Allow unpublishing all versions of a published package.
234 - Allow conflicting peerDependencies to be installed in the root project.
235 - Implicitly set `--yes` during `npm init`.
236 - Allow clobbering existing values in `npm pkg`
237 - Allow unpublishing of entire packages (not just a single version).
238
239 If you don't have a clear idea of what you want to do, it is strongly recommended that you do not use this option!
240
241 #### `json`
242
243 - Default: false
244 - Type: Boolean
245
246 Whether or not to output JSON data, rather than the normal output.
247
248 - In `npm pkg set` it enables parsing set values with JSON.parse() before saving them to your `package.json`.
249
250 Not supported by all npm commands.
251
252 #### `package-lock-only`
253
254 - Default: false
255 - Type: Boolean
256
257 If set to true, the current operation will only use the `package-lock.json`, ignoring `node_modules`.
258
259 For `update` this means only the `package-lock.json` will be updated, instead of checking `node_modules` and downloading dependencies.
260
261 For `list` this means the output will be based on the tree described by the `package-lock.json`, rather than the contents of `node_modules`.
262
263 #### `package-lock`
264
265 - Default: true
266 - Type: Boolean
267
268 If set to false, then ignore `package-lock.json` files when installing. This will also prevent _writing_ `package-lock.json` if `save` is true.
269
270 #### `omit`
271
272 - Default: 'dev' if the `NODE_ENV` environment variable is set to 'production', otherwise empty.
273 - Type: "dev", "optional", or "peer" (can be set multiple times)
274
275 Dependency types to omit from the installation tree on disk.
276
277 Note that these dependencies _are_ still resolved and added to the `package-lock.json` or `npm-shrinkwrap.json` file. They are just not physically installed on disk.
278
279 If a package type appears in both the `--include` and `--omit` lists, then it will be included.
280
281 If the resulting omit list includes `'dev'`, then the `NODE_ENV` environment variable will be set to `'production'` for all lifecycle scripts.
282
283 #### `include`
284
285 - Default:
286 - Type: "prod", "dev", "optional", or "peer" (can be set multiple times)
287
288 Option that allows for defining which types of dependencies to install.
289
290 This is the inverse of `--omit=<type>`.
291
292 Dependency types specified in `--include` will not be omitted, regardless of the order in which omit/include are specified on the command-line.
293
294 #### `foreground-scripts`
295
296 - Default: `false` unless when using `npm pack` or `npm publish` where it defaults to `true`
297 - Type: Boolean
298
299 Run all build scripts (ie, `preinstall`, `install`, and `postinstall`) scripts for installed packages in the foreground process, sharing standard input, output, and error with the main npm process.
300
301 Note that this will generally make installs run slower, and be much noisier, but can be useful for debugging.
302
303 #### `ignore-scripts`
304
305 - Default: false
306 - Type: Boolean
307
308 If true, npm does not run scripts specified in package.json files.
309
310 Note that commands explicitly intended to run a particular script, such as `npm start`, `npm stop`, `npm restart`, `npm test`, and `npm run-script` will still run their intended script if `ignore-scripts` is set, but they will _not_ run any pre- or post-scripts.
311
312 #### `workspace`
313
314 - Default:
315 - Type: String (can be set multiple times)
316
317 Enable running a command in the context of the configured workspaces of the current project while filtering by running only the workspaces defined by this configuration option.
318
319 Valid values for the `workspace` config are either:
320
321 - Workspace names
322 - Path to a workspace directory
323 - Path to a parent workspace directory (will result in selecting all workspaces within that folder)
324
325 When set for the `npm init` command, this may be set to the folder of a workspace which does not yet exist, to create the folder and set it up as a brand new workspace within the project.
326
327 This value is not exported to the environment for child processes.
328
329 #### `workspaces`
330
331 - Default: null
332 - Type: null or Boolean
333
334 Set to true to run the command in the context of **all** configured workspaces.
335
336 Explicitly setting this to false will cause commands like `install` to ignore workspaces altogether. When not set explicitly:
337
338 - Commands that operate on the `node_modules` tree (install, update, etc.) will link workspaces into the `node_modules` folder. - Commands that do other things (test, exec, publish, etc.) will operate on the root project, _unless_ one or more workspaces are specified in the `workspace` config.
339
340 This value is not exported to the environment for child processes.
341
342 #### `include-workspace-root`
343
344 - Default: false
345 - Type: Boolean
346
347 Include the workspace root when workspaces are enabled for a command.
348
349 When false, specifying individual workspaces via the `workspace` config, or all workspaces via the `workspaces` flag, will cause npm to operate only on the specified workspaces, and not on the root project.
350
351 This value is not exported to the environment for child processes.
352
353 #### `install-links`
354
355 - Default: false
356 - Type: Boolean
357
358 When set file: protocol dependencies will be packed and installed as regular dependencies instead of creating a symlink. This option has no effect on workspaces.
359
360 ### See Also
361
362 - [npm install](/cli/v10/commands/npm-install)
363 - [config](/cli/v10/using-npm/config)