• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!DOCTYPE html><html><head>
2<meta charset="utf-8">
3<title>npm-audit</title>
4<style>
5body {
6    background-color: #ffffff;
7    color: #24292e;
8
9    margin: 0;
10
11    line-height: 1.5;
12
13    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
14}
15#rainbar {
16    height: 10px;
17    background-image: linear-gradient(139deg, #fb8817, #ff4b01, #c12127, #e02aff);
18}
19
20a {
21    text-decoration: none;
22    color: #0366d6;
23}
24a:hover {
25    text-decoration: underline;
26}
27
28pre {
29    margin: 1em 0px;
30    padding: 1em;
31    border: solid 1px #e1e4e8;
32    border-radius: 6px;
33
34    display: block;
35    overflow: auto;
36
37    white-space: pre;
38
39    background-color: #f6f8fa;
40    color: #393a34;
41}
42code {
43    font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
44    font-size: 85%;
45    padding: 0.2em 0.4em;
46    background-color: #f6f8fa;
47    color: #393a34;
48}
49pre > code {
50    padding: 0;
51    background-color: inherit;
52    color: inherit;
53}
54h1, h2, h3 {
55    font-weight: 600;
56}
57
58#logobar {
59    background-color: #333333;
60    margin: 0 auto;
61    padding: 1em 4em;
62}
63#logobar .logo {
64    float: left;
65}
66#logobar .title {
67    font-weight: 600;
68    color: #dddddd;
69    float: left;
70    margin: 5px 0 0 1em;
71}
72#logobar:after {
73    content: "";
74    display: block;
75    clear: both;
76}
77
78#content {
79    margin: 0 auto;
80    padding: 0 4em;
81}
82
83#table_of_contents > h2 {
84    font-size: 1.17em;
85}
86#table_of_contents ul:first-child {
87    border: solid 1px #e1e4e8;
88    border-radius: 6px;
89    padding: 1em;
90    background-color: #f6f8fa;
91    color: #393a34;
92}
93#table_of_contents ul {
94    list-style-type: none;
95    padding-left: 1.5em;
96}
97#table_of_contents li {
98    font-size: 0.9em;
99}
100#table_of_contents li a {
101    color: #000000;
102}
103
104header.title {
105    border-bottom: solid 1px #e1e4e8;
106}
107header.title > h1 {
108    margin-bottom: 0.25em;
109}
110header.title > .description {
111    display: block;
112    margin-bottom: 0.5em;
113    line-height: 1;
114}
115
116footer#edit {
117    border-top: solid 1px #e1e4e8;
118    margin: 3em 0 4em 0;
119    padding-top: 2em;
120}
121</style>
122</head>
123<body>
124<div id="banner">
125<div id="rainbar"></div>
126<div id="logobar">
127<svg class="logo" role="img" height="32" width="32" viewBox="0 0 700 700">
128<polygon fill="#cb0000" points="0,700 700,700 700,0 0,0"></polygon>
129<polygon fill="#ffffff" points="150,550 350,550 350,250 450,250 450,550 550,550 550,150 150,150"></polygon>
130</svg>
131<div class="title">
132npm command-line interface
133</div>
134</div>
135</div>
136
137<section id="content">
138<header class="title">
139<h1 id="npm-audit">npm-audit</h1>
140<span class="description">Run a security audit</span>
141</header>
142
143<section id="table_of_contents">
144<h2 id="table-of-contents">Table of contents</h2>
145<div id="_table_of_contents"><ul><li><a href="#synopsis">Synopsis</a></li><li><a href="#description">Description</a></li><li><a href="#package-lock">Package lock</a></li><li><a href="#audit-signatures">Audit Signatures</a></li><li><a href="#audit-endpoints">Audit Endpoints</a></li><ul><li><a href="#bulk-advisory-endpoint">Bulk Advisory Endpoint</a></li><li><a href="#quick-audit-endpoint">Quick Audit Endpoint</a></li><li><a href="#scrubbing">Scrubbing</a></li><li><a href="#calculating-meta-vulnerabilities-and-remediations">Calculating Meta-Vulnerabilities and Remediations</a></li></ul><li><a href="#exit-code">Exit Code</a></li><li><a href="#examples">Examples</a></li><li><a href="#configuration">Configuration</a></li><ul><li><a href="#audit-level"><code>audit-level</code></a></li><li><a href="#dry-run"><code>dry-run</code></a></li><li><a href="#force"><code>force</code></a></li><li><a href="#json"><code>json</code></a></li><li><a href="#package-lock-only"><code>package-lock-only</code></a></li><li><a href="#package-lock2"><code>package-lock</code></a></li><li><a href="#omit"><code>omit</code></a></li><li><a href="#include"><code>include</code></a></li><li><a href="#foreground-scripts"><code>foreground-scripts</code></a></li><li><a href="#ignore-scripts"><code>ignore-scripts</code></a></li><li><a href="#workspace"><code>workspace</code></a></li><li><a href="#workspaces"><code>workspaces</code></a></li><li><a href="#include-workspace-root"><code>include-workspace-root</code></a></li><li><a href="#install-links"><code>install-links</code></a></li></ul><li><a href="#see-also">See Also</a></li></ul></div>
146</section>
147
148<div id="_content"><h3 id="synopsis">Synopsis</h3>
149<pre><code class="language-bash">npm audit [fix|signatures]
150</code></pre>
151<h3 id="description">Description</h3>
152<p>The audit command submits a description of the dependencies configured in
153your project to your default registry and asks for a report of known
154vulnerabilities.  If any vulnerabilities are found, then the impact and
155appropriate remediation will be calculated.  If the <code>fix</code> argument is
156provided, then remediations will be applied to the package tree.</p>
157<p>The command will exit with a 0 exit code if no vulnerabilities were found.</p>
158<p>Note that some vulnerabilities cannot be fixed automatically and will
159require manual intervention or review.  Also note that since <code>npm audit fix</code> runs a full-fledged <code>npm install</code> under the hood, all configs that
160apply to the installer will also apply to <code>npm install</code> -- so things like
161<code>npm audit fix --package-lock-only</code> will work as expected.</p>
162<p>By default, the audit command will exit with a non-zero code if any
163vulnerability is found. It may be useful in CI environments to include the
164<code>--audit-level</code> parameter to specify the minimum vulnerability level that
165will cause the command to fail. This option does not filter the report
166output, it simply changes the command's failure threshold.</p>
167<h3 id="package-lock">Package lock</h3>
168<p>By default npm requires a package-lock or shrinkwrap in order to run the
169audit.  You can bypass the package lock with <code>--no-package-lock</code> but be
170aware the results may be different with every run, since npm will
171re-build the dependency tree each time.</p>
172<h3 id="audit-signatures">Audit Signatures</h3>
173<p>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.</p>
174<p>Registry signatures can be verified using the following <code>audit</code> command:</p>
175<pre><code class="language-bash">$ npm audit signatures
176</code></pre>
177<p>The npm CLI supports registry signatures and signing keys provided by any registry if the following conventions are followed:</p>
178<ol>
179<li>Signatures are provided in the package's <code>packument</code> in each published version within the <code>dist</code> object:</li>
180</ol>
181<pre><code class="language-json">"dist":{
182  "..omitted..": "..omitted..",
183  "signatures": [{
184    "keyid": "SHA256:{{SHA256_PUBLIC_KEY}}",
185    "sig": "a312b9c3cb4a1b693e8ebac5ee1ca9cc01f2661c14391917dcb111517f72370809..."
186  }]
187}
188</code></pre>
189<p>See this <a href="https://registry.npmjs.org/light-cycle/1.4.3">example</a> of a signed package from the public npm registry.</p>
190<p>The <code>sig</code> is generated using the following template: <code>${package.name}@${package.version}:${package.dist.integrity}</code> and the <code>keyid</code> has to match one of the public signing keys below.</p>
191<ol start="2">
192<li>Public signing keys are provided at <code>registry-host.tld/-/npm/v1/keys</code> in the following format:</li>
193</ol>
194<pre><code>{
195  "keys": [{
196    "expires": null,
197    "keyid": "SHA256:{{SHA256_PUBLIC_KEY}}",
198    "keytype": "ecdsa-sha2-nistp256",
199    "scheme": "ecdsa-sha2-nistp256",
200    "key": "{{B64_PUBLIC_KEY}}"
201  }]
202}
203</code></pre>
204<p>Keys response:</p>
205<ul>
206<li><code>expires</code>: null or a simplified extended <a href="https://en.wikipedia.org/wiki/ISO_8601%22">ISO 8601 format</a>: <code>YYYY-MM-DDTHH:mm:ss.sssZ</code></li>
207<li><code>keydid</code>: sha256 fingerprint of the public key</li>
208<li><code>keytype</code>: only <code>ecdsa-sha2-nistp256</code> is currently supported by the npm CLI</li>
209<li><code>scheme</code>: only <code>ecdsa-sha2-nistp256</code> is currently supported by the npm CLI</li>
210<li><code>key</code>: base64 encoded public key</li>
211</ul>
212<p>See this <a href="https://registry.npmjs.org/-/npm/v1/keys%22">example key's response from the public npm registry</a>.</p>
213<h3 id="audit-endpoints">Audit Endpoints</h3>
214<p>There are two audit endpoints that npm may use to fetch vulnerability
215information: the <code>Bulk Advisory</code> endpoint and the <code>Quick Audit</code> endpoint.</p>
216<h4 id="bulk-advisory-endpoint">Bulk Advisory Endpoint</h4>
217<p>As of version 7, npm uses the much faster <code>Bulk Advisory</code> endpoint to
218optimize the speed of calculating audit results.</p>
219<p>npm will generate a JSON payload with the name and list of versions of each
220package in the tree, and POST it to the default configured registry at
221the path <code>/-/npm/v1/security/advisories/bulk</code>.</p>
222<p>Any packages in the tree that do not have a <code>version</code> field in their
223package.json file will be ignored.  If any <code>--omit</code> options are specified
224(either via the <a href="../using-npm/config#omit.html"><code>--omit</code> config</a>, or one of the
225shorthands such as <code>--production</code>, <code>--only=dev</code>, and so on), then packages will
226be omitted from the submitted payload as appropriate.</p>
227<p>If the registry responds with an error, or with an invalid response, then
228npm will attempt to load advisory data from the <code>Quick Audit</code> endpoint.</p>
229<p>The expected result will contain a set of advisory objects for each
230dependency that matches the advisory range.  Each advisory object contains
231a <code>name</code>, <code>url</code>, <code>id</code>, <code>severity</code>, <code>vulnerable_versions</code>, and <code>title</code>.</p>
232<p>npm then uses these advisory objects to calculate vulnerabilities and
233meta-vulnerabilities of the dependencies within the tree.</p>
234<h4 id="quick-audit-endpoint">Quick Audit Endpoint</h4>
235<p>If the <code>Bulk Advisory</code> endpoint returns an error, or invalid data, npm will
236attempt to load advisory data from the <code>Quick Audit</code> endpoint, which is
237considerably slower in most cases.</p>
238<p>The full package tree as found in <code>package-lock.json</code> is submitted, along
239with the following pieces of additional metadata:</p>
240<ul>
241<li><code>npm_version</code></li>
242<li><code>node_version</code></li>
243<li><code>platform</code></li>
244<li><code>arch</code></li>
245<li><code>node_env</code></li>
246</ul>
247<p>All packages in the tree are submitted to the Quick Audit endpoint.
248Omitted dependency types are skipped when generating the report.</p>
249<h4 id="scrubbing">Scrubbing</h4>
250<p>Out of an abundance of caution, npm versions 5 and 6 would "scrub" any
251packages from the submitted report if their name contained a <code>/</code> character,
252so as to avoid leaking the names of potentially private packages or git
253URLs.</p>
254<p>However, in practice, this resulted in audits often failing to properly
255detect meta-vulnerabilities, because the tree would appear to be invalid
256due to missing dependencies, and prevented the detection of vulnerabilities
257in package trees that used git dependencies or private modules.</p>
258<p>This scrubbing has been removed from npm as of version 7.</p>
259<h4 id="calculating-meta-vulnerabilities-and-remediations">Calculating Meta-Vulnerabilities and Remediations</h4>
260<p>npm uses the
261<a href="http://npm.im/@npmcli/metavuln-calculator"><code>@npmcli/metavuln-calculator</code></a>
262module to turn a set of security advisories into a set of "vulnerability"
263objects.  A "meta-vulnerability" is a dependency that is vulnerable by
264virtue of dependence on vulnerable versions of a vulnerable package.</p>
265<p>For example, if the package <code>foo</code> is vulnerable in the range <code>&gt;=1.0.2 &lt;2.0.0</code>, and the package <code>bar</code> depends on <code>foo@^1.1.0</code>, then that version
266of <code>bar</code> can only be installed by installing a vulnerable version of <code>foo</code>.
267In this case, <code>bar</code> is a "metavulnerability".</p>
268<p>Once metavulnerabilities for a given package are calculated, they are
269cached in the <code>~/.npm</code> folder and only re-evaluated if the advisory range
270changes, or a new version of the package is published (in which case, the
271new version is checked for metavulnerable status as well).</p>
272<p>If the chain of metavulnerabilities extends all the way to the root
273project, and it cannot be updated without changing its dependency ranges,
274then <code>npm audit fix</code> will require the <code>--force</code> option to apply the
275remediation.  If remediations do not require changes to the dependency
276ranges, then all vulnerable packages will be updated to a version that does
277not have an advisory or metavulnerability posted against it.</p>
278<h3 id="exit-code">Exit Code</h3>
279<p>The <code>npm audit</code> command will exit with a 0 exit code if no vulnerabilities
280were found.  The <code>npm audit fix</code> command will exit with 0 exit code if no
281vulnerabilities are found <em>or</em> if the remediation is able to successfully
282fix all vulnerabilities.</p>
283<p>If vulnerabilities were found the exit code will depend on the
284<a href="../using-npm/config#audit-level.html"><code>audit-level</code> config</a>.</p>
285<h3 id="examples">Examples</h3>
286<p>Scan your project for vulnerabilities and automatically install any compatible
287updates to vulnerable dependencies:</p>
288<pre><code class="language-bash">$ npm audit fix
289</code></pre>
290<p>Run <code>audit fix</code> without modifying <code>node_modules</code>, but still updating the
291pkglock:</p>
292<pre><code class="language-bash">$ npm audit fix --package-lock-only
293</code></pre>
294<p>Skip updating <code>devDependencies</code>:</p>
295<pre><code class="language-bash">$ npm audit fix --only=prod
296</code></pre>
297<p>Have <code>audit fix</code> install SemVer-major updates to toplevel dependencies, not
298just SemVer-compatible ones:</p>
299<pre><code class="language-bash">$ npm audit fix --force
300</code></pre>
301<p>Do a dry run to get an idea of what <code>audit fix</code> will do, and <em>also</em> output
302install information in JSON format:</p>
303<pre><code class="language-bash">$ npm audit fix --dry-run --json
304</code></pre>
305<p>Scan your project for vulnerabilities and just show the details, without
306fixing anything:</p>
307<pre><code class="language-bash">$ npm audit
308</code></pre>
309<p>Get the detailed audit report in JSON format:</p>
310<pre><code class="language-bash">$ npm audit --json
311</code></pre>
312<p>Fail an audit only if the results include a vulnerability with a level of moderate or higher:</p>
313<pre><code class="language-bash">$ npm audit --audit-level=moderate
314</code></pre>
315<h3 id="configuration">Configuration</h3>
316<h4 id="audit-level"><code>audit-level</code></h4>
317<ul>
318<li>Default: null</li>
319<li>Type: null, "info", "low", "moderate", "high", "critical", or "none"</li>
320</ul>
321<p>The minimum level of vulnerability for <code>npm audit</code> to exit with a non-zero
322exit code.</p>
323<h4 id="dry-run"><code>dry-run</code></h4>
324<ul>
325<li>Default: false</li>
326<li>Type: Boolean</li>
327</ul>
328<p>Indicates that you don't want npm to make any changes and that it should
329only report what it would have done. This can be passed into any of the
330commands that modify your local installation, eg, <code>install</code>, <code>update</code>,
331<code>dedupe</code>, <code>uninstall</code>, as well as <code>pack</code> and <code>publish</code>.</p>
332<p>Note: This is NOT honored by other network related commands, eg <code>dist-tags</code>,
333<code>owner</code>, etc.</p>
334<h4 id="force"><code>force</code></h4>
335<ul>
336<li>Default: false</li>
337<li>Type: Boolean</li>
338</ul>
339<p>Removes various protections against unfortunate side effects, common
340mistakes, unnecessary performance degradation, and malicious input.</p>
341<ul>
342<li>Allow clobbering non-npm files in global installs.</li>
343<li>Allow the <code>npm version</code> command to work on an unclean git repository.</li>
344<li>Allow deleting the cache folder with <code>npm cache clean</code>.</li>
345<li>Allow installing packages that have an <code>engines</code> declaration requiring a
346different version of npm.</li>
347<li>Allow installing packages that have an <code>engines</code> declaration requiring a
348different version of <code>node</code>, even if <code>--engine-strict</code> is enabled.</li>
349<li>Allow <code>npm audit fix</code> to install modules outside your stated dependency
350range (including SemVer-major changes).</li>
351<li>Allow unpublishing all versions of a published package.</li>
352<li>Allow conflicting peerDependencies to be installed in the root project.</li>
353<li>Implicitly set <code>--yes</code> during <code>npm init</code>.</li>
354<li>Allow clobbering existing values in <code>npm pkg</code></li>
355<li>Allow unpublishing of entire packages (not just a single version).</li>
356</ul>
357<p>If you don't have a clear idea of what you want to do, it is strongly
358recommended that you do not use this option!</p>
359<h4 id="json"><code>json</code></h4>
360<ul>
361<li>Default: false</li>
362<li>Type: Boolean</li>
363</ul>
364<p>Whether or not to output JSON data, rather than the normal output.</p>
365<ul>
366<li>In <code>npm pkg set</code> it enables parsing set values with JSON.parse() before
367saving them to your <code>package.json</code>.</li>
368</ul>
369<p>Not supported by all npm commands.</p>
370<h4 id="package-lock-only"><code>package-lock-only</code></h4>
371<ul>
372<li>Default: false</li>
373<li>Type: Boolean</li>
374</ul>
375<p>If set to true, the current operation will only use the <code>package-lock.json</code>,
376ignoring <code>node_modules</code>.</p>
377<p>For <code>update</code> this means only the <code>package-lock.json</code> will be updated,
378instead of checking <code>node_modules</code> and downloading dependencies.</p>
379<p>For <code>list</code> this means the output will be based on the tree described by the
380<code>package-lock.json</code>, rather than the contents of <code>node_modules</code>.</p>
381<h4 id="package-lock2"><code>package-lock</code></h4>
382<ul>
383<li>Default: true</li>
384<li>Type: Boolean</li>
385</ul>
386<p>If set to false, then ignore <code>package-lock.json</code> files when installing. This
387will also prevent <em>writing</em> <code>package-lock.json</code> if <code>save</code> is true.</p>
388<h4 id="omit"><code>omit</code></h4>
389<ul>
390<li>Default: 'dev' if the <code>NODE_ENV</code> environment variable is set to
391'production', otherwise empty.</li>
392<li>Type: "dev", "optional", or "peer" (can be set multiple times)</li>
393</ul>
394<p>Dependency types to omit from the installation tree on disk.</p>
395<p>Note that these dependencies <em>are</em> still resolved and added to the
396<code>package-lock.json</code> or <code>npm-shrinkwrap.json</code> file. They are just not
397physically installed on disk.</p>
398<p>If a package type appears in both the <code>--include</code> and <code>--omit</code> lists, then
399it will be included.</p>
400<p>If the resulting omit list includes <code>'dev'</code>, then the <code>NODE_ENV</code> environment
401variable will be set to <code>'production'</code> for all lifecycle scripts.</p>
402<h4 id="include"><code>include</code></h4>
403<ul>
404<li>Default:</li>
405<li>Type: "prod", "dev", "optional", or "peer" (can be set multiple times)</li>
406</ul>
407<p>Option that allows for defining which types of dependencies to install.</p>
408<p>This is the inverse of <code>--omit=&lt;type&gt;</code>.</p>
409<p>Dependency types specified in <code>--include</code> will not be omitted, regardless of
410the order in which omit/include are specified on the command-line.</p>
411<h4 id="foreground-scripts"><code>foreground-scripts</code></h4>
412<ul>
413<li>Default: <code>false</code> unless when using <code>npm pack</code> or <code>npm publish</code> where it
414defaults to <code>true</code></li>
415<li>Type: Boolean</li>
416</ul>
417<p>Run all build scripts (ie, <code>preinstall</code>, <code>install</code>, and <code>postinstall</code>)
418scripts for installed packages in the foreground process, sharing standard
419input, output, and error with the main npm process.</p>
420<p>Note that this will generally make installs run slower, and be much noisier,
421but can be useful for debugging.</p>
422<h4 id="ignore-scripts"><code>ignore-scripts</code></h4>
423<ul>
424<li>Default: false</li>
425<li>Type: Boolean</li>
426</ul>
427<p>If true, npm does not run scripts specified in package.json files.</p>
428<p>Note that commands explicitly intended to run a particular script, such as
429<code>npm start</code>, <code>npm stop</code>, <code>npm restart</code>, <code>npm test</code>, and <code>npm run-script</code>
430will still run their intended script if <code>ignore-scripts</code> is set, but they
431will <em>not</em> run any pre- or post-scripts.</p>
432<h4 id="workspace"><code>workspace</code></h4>
433<ul>
434<li>Default:</li>
435<li>Type: String (can be set multiple times)</li>
436</ul>
437<p>Enable running a command in the context of the configured workspaces of the
438current project while filtering by running only the workspaces defined by
439this configuration option.</p>
440<p>Valid values for the <code>workspace</code> config are either:</p>
441<ul>
442<li>Workspace names</li>
443<li>Path to a workspace directory</li>
444<li>Path to a parent workspace directory (will result in selecting all
445workspaces within that folder)</li>
446</ul>
447<p>When set for the <code>npm init</code> command, this may be set to the folder of a
448workspace which does not yet exist, to create the folder and set it up as a
449brand new workspace within the project.</p>
450<p>This value is not exported to the environment for child processes.</p>
451<h4 id="workspaces"><code>workspaces</code></h4>
452<ul>
453<li>Default: null</li>
454<li>Type: null or Boolean</li>
455</ul>
456<p>Set to true to run the command in the context of <strong>all</strong> configured
457workspaces.</p>
458<p>Explicitly setting this to false will cause commands like <code>install</code> to
459ignore workspaces altogether. When not set explicitly:</p>
460<ul>
461<li>Commands that operate on the <code>node_modules</code> tree (install, update, etc.)
462will link workspaces into the <code>node_modules</code> folder. - Commands that do
463other things (test, exec, publish, etc.) will operate on the root project,
464<em>unless</em> one or more workspaces are specified in the <code>workspace</code> config.</li>
465</ul>
466<p>This value is not exported to the environment for child processes.</p>
467<h4 id="include-workspace-root"><code>include-workspace-root</code></h4>
468<ul>
469<li>Default: false</li>
470<li>Type: Boolean</li>
471</ul>
472<p>Include the workspace root when workspaces are enabled for a command.</p>
473<p>When false, specifying individual workspaces via the <code>workspace</code> config, or
474all workspaces via the <code>workspaces</code> flag, will cause npm to operate only on
475the specified workspaces, and not on the root project.</p>
476<p>This value is not exported to the environment for child processes.</p>
477<h4 id="install-links"><code>install-links</code></h4>
478<ul>
479<li>Default: false</li>
480<li>Type: Boolean</li>
481</ul>
482<p>When set file: protocol dependencies will be packed and installed as regular
483dependencies instead of creating a symlink. This option has no effect on
484workspaces.</p>
485<h3 id="see-also">See Also</h3>
486<ul>
487<li><a href="../commands/npm-install.html">npm install</a></li>
488<li><a href="../using-npm/config.html">config</a></li>
489</ul></div>
490
491<footer id="edit">
492<a href="https://github.com/npm/cli/edit/latest/docs/content/commands/npm-audit.md">
493<svg role="img" viewBox="0 0 16 16" width="16" height="16" fill="currentcolor" style="vertical-align: text-bottom; margin-right: 0.3em;">
494<path fill-rule="evenodd" d="M11.013 1.427a1.75 1.75 0 012.474 0l1.086 1.086a1.75 1.75 0 010 2.474l-8.61 8.61c-.21.21-.47.364-.756.445l-3.251.93a.75.75 0 01-.927-.928l.929-3.25a1.75 1.75 0 01.445-.758l8.61-8.61zm1.414 1.06a.25.25 0 00-.354 0L10.811 3.75l1.439 1.44 1.263-1.263a.25.25 0 000-.354l-1.086-1.086zM11.189 6.25L9.75 4.81l-6.286 6.287a.25.25 0 00-.064.108l-.558 1.953 1.953-.558a.249.249 0 00.108-.064l6.286-6.286z"></path>
495</svg>
496Edit this page on GitHub
497</a>
498</footer>
499</section>
500
501
502
503</body></html>