npm-link.html 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  1. <!DOCTYPE html><html><head>
  2. <meta charset="utf-8">
  3. <title>npm-link</title>
  4. <style>
  5. body {
  6. background-color: #ffffff;
  7. color: #24292e;
  8. margin: 0;
  9. line-height: 1.5;
  10. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  11. }
  12. #rainbar {
  13. height: 10px;
  14. background-image: linear-gradient(139deg, #fb8817, #ff4b01, #c12127, #e02aff);
  15. }
  16. a {
  17. text-decoration: none;
  18. color: #0366d6;
  19. }
  20. a:hover {
  21. text-decoration: underline;
  22. }
  23. pre {
  24. margin: 1em 0px;
  25. padding: 1em;
  26. border: solid 1px #e1e4e8;
  27. border-radius: 6px;
  28. display: block;
  29. overflow: auto;
  30. white-space: pre;
  31. background-color: #f6f8fa;
  32. color: #393a34;
  33. }
  34. code {
  35. font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
  36. font-size: 85%;
  37. padding: 0.2em 0.4em;
  38. background-color: #f6f8fa;
  39. color: #393a34;
  40. }
  41. pre > code {
  42. padding: 0;
  43. background-color: inherit;
  44. color: inherit;
  45. }
  46. h1, h2, h3 {
  47. font-weight: 600;
  48. }
  49. #logobar {
  50. background-color: #333333;
  51. margin: 0 auto;
  52. padding: 1em 4em;
  53. }
  54. #logobar .logo {
  55. float: left;
  56. }
  57. #logobar .title {
  58. font-weight: 600;
  59. color: #dddddd;
  60. float: left;
  61. margin: 5px 0 0 1em;
  62. }
  63. #logobar:after {
  64. content: "";
  65. display: block;
  66. clear: both;
  67. }
  68. #content {
  69. margin: 0 auto;
  70. padding: 0 4em;
  71. }
  72. #table_of_contents > h2 {
  73. font-size: 1.17em;
  74. }
  75. #table_of_contents ul:first-child {
  76. border: solid 1px #e1e4e8;
  77. border-radius: 6px;
  78. padding: 1em;
  79. background-color: #f6f8fa;
  80. color: #393a34;
  81. }
  82. #table_of_contents ul {
  83. list-style-type: none;
  84. padding-left: 1.5em;
  85. }
  86. #table_of_contents li {
  87. font-size: 0.9em;
  88. }
  89. #table_of_contents li a {
  90. color: #000000;
  91. }
  92. header.title {
  93. border-bottom: solid 1px #e1e4e8;
  94. }
  95. header.title > h1 {
  96. margin-bottom: 0.25em;
  97. }
  98. header.title > .description {
  99. display: block;
  100. margin-bottom: 0.5em;
  101. line-height: 1;
  102. }
  103. header.title .version {
  104. font-size: 0.8em;
  105. color: #666666;
  106. }
  107. footer#edit {
  108. border-top: solid 1px #e1e4e8;
  109. margin: 3em 0 4em 0;
  110. padding-top: 2em;
  111. }
  112. table {
  113. width: 100%;
  114. margin: 1em 0;
  115. border-radius: 6px;
  116. border: 1px solid #e1e4e8;
  117. overflow: hidden;
  118. border-collapse: separate;
  119. border-spacing: 0;
  120. }
  121. table thead {
  122. background-color: #f6f8fa;
  123. }
  124. table tbody {
  125. background-color: #ffffff;
  126. }
  127. table th,
  128. table td {
  129. padding: 0.75em;
  130. text-align: left;
  131. border-right: 1px solid #e1e4e8;
  132. border-bottom: 1px solid #e1e4e8;
  133. }
  134. table th:last-child,
  135. table td:last-child {
  136. border-right: none;
  137. }
  138. table tbody tr:last-child td {
  139. border-bottom: none;
  140. }
  141. table th {
  142. font-weight: 600;
  143. background-color: #f6f8fa;
  144. }
  145. table code {
  146. white-space: nowrap;
  147. }
  148. </style>
  149. </head>
  150. <body>
  151. <div id="banner">
  152. <div id="rainbar"></div>
  153. <div id="logobar">
  154. <svg class="logo" role="img" height="32" width="32" viewBox="0 0 700 700">
  155. <polygon fill="#cb0000" points="0,700 700,700 700,0 0,0"></polygon>
  156. <polygon fill="#ffffff" points="150,550 350,550 350,250 450,250 450,550 550,550 550,150 150,150"></polygon>
  157. </svg>
  158. <div class="title">
  159. npm command-line interface
  160. </div>
  161. </div>
  162. </div>
  163. <section id="content">
  164. <header class="title">
  165. <h1 id="----npm-link----11120">
  166. <span>npm-link</span>
  167. <span class="version">@11.12.0</span>
  168. </h1>
  169. <span class="description">Symlink a package folder</span>
  170. </header>
  171. <section id="table_of_contents">
  172. <h2 id="table-of-contents">Table of contents</h2>
  173. <div id="_table_of_contents"><ul><li><a href="#synopsis">Synopsis</a></li><li><a href="#description">Description</a></li><li><a href="#caveat">Caveat</a></li><li><a href="#workspace-usage">Workspace Usage</a></li><li><a href="#configuration">Configuration</a></li><ul><li><a href="#save"><code>save</code></a></li><li><a href="#save-exact"><code>save-exact</code></a></li><li><a href="#global"><code>global</code></a></li><li><a href="#install-strategy"><code>install-strategy</code></a></li><li><a href="#legacy-bundling"><code>legacy-bundling</code></a></li><li><a href="#global-style"><code>global-style</code></a></li><li><a href="#strict-peer-deps"><code>strict-peer-deps</code></a></li><li><a href="#package-lock"><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="#ignore-scripts"><code>ignore-scripts</code></a></li><li><a href="#allow-git"><code>allow-git</code></a></li><li><a href="#audit"><code>audit</code></a></li><li><a href="#bin-links"><code>bin-links</code></a></li><li><a href="#fund"><code>fund</code></a></li><li><a href="#dry-run"><code>dry-run</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>
  174. </section>
  175. <div id="_content"><h3 id="synopsis">Synopsis</h3>
  176. <pre><code class="language-bash">npm link [&lt;package-spec&gt;]
  177. alias: ln
  178. </code></pre>
  179. <h3 id="description">Description</h3>
  180. <p>This is handy for installing your own stuff, so that you can work on it and test iteratively without having to continually rebuild.</p>
  181. <p>Package linking is a two-step process.</p>
  182. <p>First, <code>npm link</code> in a package folder with no arguments will create a symlink in the global folder <code>{prefix}/lib/node_modules/&lt;package&gt;</code> that links to the package where the <code>npm link</code> command was executed.
  183. It will also link any bins in the package to <code>{prefix}/bin/{name}</code>.
  184. Note that <code>npm link</code> uses the global prefix (see <code>npm prefix -g</code> for its value).</p>
  185. <p>Next, in some other location, <code>npm link package-name</code> will create a symbolic link from globally-installed <code>package-name</code> to <code>node_modules/</code> of the current folder.</p>
  186. <p>Note that <code>package-name</code> is taken from <code>package.json</code>, <em>not</em> from the directory name.</p>
  187. <p>The package name can be optionally prefixed with a scope.
  188. See <a href="../using-npm/scope.html"><code>scope</code></a>.
  189. The scope must be preceded by an @-symbol and followed by a slash.</p>
  190. <p>When creating tarballs for <code>npm publish</code>, the linked packages are "snapshotted" to their current state by resolving the symbolic links, if they are included in <code>bundleDependencies</code>.</p>
  191. <p>For example:</p>
  192. <pre><code class="language-bash">cd ~/projects/node-redis # go into the package directory
  193. npm link # creates global link
  194. cd ~/projects/node-bloggy # go into some other package directory.
  195. npm link redis # link-install the package
  196. </code></pre>
  197. <p>Now, any changes to <code>~/projects/node-redis</code> will be reflected in
  198. <code>~/projects/node-bloggy/node_modules/node-redis/</code>.
  199. Note that the link should be to the package name, not the directory name for that package.</p>
  200. <p>You may also shortcut the two steps in one.
  201. For example, to do the above use-case in a shorter way:</p>
  202. <pre><code class="language-bash">cd ~/projects/node-bloggy # go into the dir of your main project
  203. npm link ../node-redis # link the dir of your dependency
  204. </code></pre>
  205. <p>The second line is the equivalent of doing:</p>
  206. <pre><code class="language-bash">(cd ../node-redis; npm link)
  207. npm link redis
  208. </code></pre>
  209. <p>That is, it first creates a global link, and then links the global installation target into your project's <code>node_modules</code> folder.</p>
  210. <p>Note that in this case, you are referring to the directory name,
  211. <code>node-redis</code>, rather than the package name <code>redis</code>.</p>
  212. <p>If your linked package is scoped (see <a href="../using-npm/scope.html"><code>scope</code></a>) your link command must include that scope, e.g.</p>
  213. <pre><code class="language-bash">npm link @myorg/privatepackage
  214. </code></pre>
  215. <h3 id="caveat">Caveat</h3>
  216. <p>Note that package dependencies linked in this way are <em>not</em> saved to <code>package.json</code> by default, on the assumption that the intention is to have a link stand in for a regular non-link dependency.
  217. Otherwise, for example, if you depend on <code>redis@^3.0.1</code>, and ran <code>npm link redis</code>, it would replace the <code>^3.0.1</code> dependency with <code>file:../path/to/node-redis</code>, which you probably don't want! Additionally, other users or developers on your project would run into issues if they do not have their folders set up exactly the same as yours.</p>
  218. <p>If you are adding a <em>new</em> dependency as a link, you should add it to the relevant metadata by running <code>npm install &lt;dep&gt; --package-lock-only</code>.</p>
  219. <p>If you <em>want</em> to save the <code>file:</code> reference in your <code>package.json</code> and <code>package-lock.json</code> files, you can use <code>npm link &lt;dep&gt; --save</code> to do so.</p>
  220. <h3 id="workspace-usage">Workspace Usage</h3>
  221. <p><code>npm link &lt;pkg&gt; --workspace &lt;name&gt;</code> will link the relevant package as a dependency of the specified workspace(s).
  222. Note that It may actually be linked into the parent project's <code>node_modules</code> folder, if there are no conflicting dependencies.</p>
  223. <p><code>npm link --workspace &lt;name&gt;</code> will create a global link to the specified workspace(s).</p>
  224. <h3 id="configuration">Configuration</h3>
  225. <h4 id="save"><code>save</code></h4>
  226. <ul>
  227. <li>Default: <code>true</code> unless when using <code>npm update</code> where it defaults to <code>false</code></li>
  228. <li>Type: Boolean</li>
  229. </ul>
  230. <p>Save installed packages to a <code>package.json</code> file as dependencies.</p>
  231. <p>When used with the <code>npm rm</code> command, removes the dependency from
  232. <code>package.json</code>.</p>
  233. <p>Will also prevent writing to <code>package-lock.json</code> if set to <code>false</code>.</p>
  234. <h4 id="save-exact"><code>save-exact</code></h4>
  235. <ul>
  236. <li>Default: false</li>
  237. <li>Type: Boolean</li>
  238. </ul>
  239. <p>Dependencies saved to package.json will be configured with an exact version
  240. rather than using npm's default semver range operator.</p>
  241. <h4 id="global"><code>global</code></h4>
  242. <ul>
  243. <li>Default: false</li>
  244. <li>Type: Boolean</li>
  245. </ul>
  246. <p>Operates in "global" mode, so that packages are installed into the <code>prefix</code>
  247. folder instead of the current working directory. See
  248. <a href="../configuring-npm/folders.html">folders</a> for more on the differences in behavior.</p>
  249. <ul>
  250. <li>packages are installed into the <code>{prefix}/lib/node_modules</code> folder, instead
  251. of the current working directory.</li>
  252. <li>bin files are linked to <code>{prefix}/bin</code></li>
  253. <li>man pages are linked to <code>{prefix}/share/man</code></li>
  254. </ul>
  255. <h4 id="install-strategy"><code>install-strategy</code></h4>
  256. <ul>
  257. <li>Default: "hoisted"</li>
  258. <li>Type: "hoisted", "nested", "shallow", or "linked"</li>
  259. </ul>
  260. <p>Sets the strategy for installing packages in node_modules. hoisted
  261. (default): Install non-duplicated in top-level, and duplicated as necessary
  262. within directory structure. nested: (formerly --legacy-bundling) install in
  263. place, no hoisting. shallow (formerly --global-style) only install direct
  264. deps at top-level. linked: (experimental) install in node_modules/.store,
  265. link in place, unhoisted.</p>
  266. <h4 id="legacy-bundling"><code>legacy-bundling</code></h4>
  267. <ul>
  268. <li>Default: false</li>
  269. <li>Type: Boolean</li>
  270. <li>DEPRECATED: This option has been deprecated in favor of
  271. <code>--install-strategy=nested</code></li>
  272. </ul>
  273. <p>Instead of hoisting package installs in <code>node_modules</code>, install packages in
  274. the same manner that they are depended on. This may cause very deep
  275. directory structures and duplicate package installs as there is no
  276. de-duplicating. Sets <code>--install-strategy=nested</code>.</p>
  277. <h4 id="global-style"><code>global-style</code></h4>
  278. <ul>
  279. <li>Default: false</li>
  280. <li>Type: Boolean</li>
  281. <li>DEPRECATED: This option has been deprecated in favor of
  282. <code>--install-strategy=shallow</code></li>
  283. </ul>
  284. <p>Only install direct dependencies in the top level <code>node_modules</code>, but hoist
  285. on deeper dependencies. Sets <code>--install-strategy=shallow</code>.</p>
  286. <h4 id="strict-peer-deps"><code>strict-peer-deps</code></h4>
  287. <ul>
  288. <li>Default: false</li>
  289. <li>Type: Boolean</li>
  290. </ul>
  291. <p>If set to <code>true</code>, and <code>--legacy-peer-deps</code> is not set, then <em>any</em>
  292. conflicting <code>peerDependencies</code> will be treated as an install failure, even
  293. if npm could reasonably guess the appropriate resolution based on non-peer
  294. dependency relationships.</p>
  295. <p>By default, conflicting <code>peerDependencies</code> deep in the dependency graph will
  296. be resolved using the nearest non-peer dependency specification, even if
  297. doing so will result in some packages receiving a peer dependency outside
  298. the range set in their package's <code>peerDependencies</code> object.</p>
  299. <p>When such an override is performed, a warning is printed, explaining the
  300. conflict and the packages involved. If <code>--strict-peer-deps</code> is set, then
  301. this warning is treated as a failure.</p>
  302. <h4 id="package-lock"><code>package-lock</code></h4>
  303. <ul>
  304. <li>Default: true</li>
  305. <li>Type: Boolean</li>
  306. </ul>
  307. <p>If set to false, then ignore <code>package-lock.json</code> files when installing. This
  308. will also prevent <em>writing</em> <code>package-lock.json</code> if <code>save</code> is true.</p>
  309. <h4 id="omit"><code>omit</code></h4>
  310. <ul>
  311. <li>Default: 'dev' if the <code>NODE_ENV</code> environment variable is set to
  312. 'production'; otherwise, empty.</li>
  313. <li>Type: "dev", "optional", or "peer" (can be set multiple times)</li>
  314. </ul>
  315. <p>Dependency types to omit from the installation tree on disk.</p>
  316. <p>Note that these dependencies <em>are</em> still resolved and added to the
  317. <code>package-lock.json</code> or <code>npm-shrinkwrap.json</code> file. They are just not
  318. physically installed on disk.</p>
  319. <p>If a package type appears in both the <code>--include</code> and <code>--omit</code> lists, then
  320. it will be included.</p>
  321. <p>If the resulting omit list includes <code>'dev'</code>, then the <code>NODE_ENV</code> environment
  322. variable will be set to <code>'production'</code> for all lifecycle scripts.</p>
  323. <h4 id="include"><code>include</code></h4>
  324. <ul>
  325. <li>Default:</li>
  326. <li>Type: "prod", "dev", "optional", or "peer" (can be set multiple times)</li>
  327. </ul>
  328. <p>Option that allows for defining which types of dependencies to install.</p>
  329. <p>This is the inverse of <code>--omit=&lt;type&gt;</code>.</p>
  330. <p>Dependency types specified in <code>--include</code> will not be omitted, regardless of
  331. the order in which omit/include are specified on the command-line.</p>
  332. <h4 id="ignore-scripts"><code>ignore-scripts</code></h4>
  333. <ul>
  334. <li>Default: false</li>
  335. <li>Type: Boolean</li>
  336. </ul>
  337. <p>If true, npm does not run scripts specified in package.json files.</p>
  338. <p>Note that commands explicitly intended to run a particular script, such as
  339. <code>npm start</code>, <code>npm stop</code>, <code>npm restart</code>, <code>npm test</code>, and <code>npm run</code> will still
  340. run their intended script if <code>ignore-scripts</code> is set, but they will <em>not</em>
  341. run any pre- or post-scripts.</p>
  342. <h4 id="allow-git"><code>allow-git</code></h4>
  343. <ul>
  344. <li>Default: "all"</li>
  345. <li>Type: "all", "none", or "root"</li>
  346. </ul>
  347. <p>Limits the ability for npm to fetch dependencies from git references. That
  348. is, dependencies that point to a git repo instead of a version or semver
  349. range. Please note that this could leave your tree incomplete and some
  350. packages may not function as intended or designed.</p>
  351. <p><code>all</code> allows any git dependencies to be fetched and installed. <code>none</code>
  352. prevents any git dependencies from being fetched and installed. <code>root</code> only
  353. allows git dependencies defined in your project's package.json to be fetched
  354. installed. Also allows git dependencies to be fetched for other commands
  355. like <code>npm view</code></p>
  356. <h4 id="audit"><code>audit</code></h4>
  357. <ul>
  358. <li>Default: true</li>
  359. <li>Type: Boolean</li>
  360. </ul>
  361. <p>When "true" submit audit reports alongside the current npm command to the
  362. default registry and all registries configured for scopes. See the
  363. documentation for <a href="../commands/npm-audit.html"><code>npm audit</code></a> for details on what is
  364. submitted.</p>
  365. <h4 id="bin-links"><code>bin-links</code></h4>
  366. <ul>
  367. <li>Default: true</li>
  368. <li>Type: Boolean</li>
  369. </ul>
  370. <p>Tells npm to create symlinks (or <code>.cmd</code> shims on Windows) for package
  371. executables.</p>
  372. <p>Set to false to have it not do this. This can be used to work around the
  373. fact that some file systems don't support symlinks, even on ostensibly Unix
  374. systems.</p>
  375. <h4 id="fund"><code>fund</code></h4>
  376. <ul>
  377. <li>Default: true</li>
  378. <li>Type: Boolean</li>
  379. </ul>
  380. <p>When "true" displays the message at the end of each <code>npm install</code>
  381. acknowledging the number of dependencies looking for funding. See <a href="../commands/npm-fund.html"><code>npm fund</code></a> for details.</p>
  382. <h4 id="dry-run"><code>dry-run</code></h4>
  383. <ul>
  384. <li>Default: false</li>
  385. <li>Type: Boolean</li>
  386. </ul>
  387. <p>Indicates that you don't want npm to make any changes and that it should
  388. only report what it would have done. This can be passed into any of the
  389. commands that modify your local installation, eg, <code>install</code>, <code>update</code>,
  390. <code>dedupe</code>, <code>uninstall</code>, as well as <code>pack</code> and <code>publish</code>.</p>
  391. <p>Note: This is NOT honored by other network related commands, eg <code>dist-tags</code>,
  392. <code>owner</code>, etc.</p>
  393. <h4 id="workspace"><code>workspace</code></h4>
  394. <ul>
  395. <li>Default:</li>
  396. <li>Type: String (can be set multiple times)</li>
  397. </ul>
  398. <p>Enable running a command in the context of the configured workspaces of the
  399. current project while filtering by running only the workspaces defined by
  400. this configuration option.</p>
  401. <p>Valid values for the <code>workspace</code> config are either:</p>
  402. <ul>
  403. <li>Workspace names</li>
  404. <li>Path to a workspace directory</li>
  405. <li>Path to a parent workspace directory (will result in selecting all
  406. workspaces within that folder)</li>
  407. </ul>
  408. <p>When set for the <code>npm init</code> command, this may be set to the folder of a
  409. workspace which does not yet exist, to create the folder and set it up as a
  410. brand new workspace within the project.</p>
  411. <p>This value is not exported to the environment for child processes.</p>
  412. <h4 id="workspaces"><code>workspaces</code></h4>
  413. <ul>
  414. <li>Default: null</li>
  415. <li>Type: null or Boolean</li>
  416. </ul>
  417. <p>Set to true to run the command in the context of <strong>all</strong> configured
  418. workspaces.</p>
  419. <p>Explicitly setting this to false will cause commands like <code>install</code> to
  420. ignore workspaces altogether. When not set explicitly:</p>
  421. <ul>
  422. <li>Commands that operate on the <code>node_modules</code> tree (install, update, etc.)
  423. will link workspaces into the <code>node_modules</code> folder. - Commands that do
  424. other things (test, exec, publish, etc.) will operate on the root project,
  425. <em>unless</em> one or more workspaces are specified in the <code>workspace</code> config.</li>
  426. </ul>
  427. <p>This value is not exported to the environment for child processes.</p>
  428. <h4 id="include-workspace-root"><code>include-workspace-root</code></h4>
  429. <ul>
  430. <li>Default: false</li>
  431. <li>Type: Boolean</li>
  432. </ul>
  433. <p>Include the workspace root when workspaces are enabled for a command.</p>
  434. <p>When false, specifying individual workspaces via the <code>workspace</code> config, or
  435. all workspaces via the <code>workspaces</code> flag, will cause npm to operate only on
  436. the specified workspaces, and not on the root project.</p>
  437. <p>This value is not exported to the environment for child processes.</p>
  438. <h4 id="install-links"><code>install-links</code></h4>
  439. <ul>
  440. <li>Default: false</li>
  441. <li>Type: Boolean</li>
  442. </ul>
  443. <p>When set file: protocol dependencies will be packed and installed as regular
  444. dependencies instead of creating a symlink. This option has no effect on
  445. workspaces.</p>
  446. <h3 id="see-also">See Also</h3>
  447. <ul>
  448. <li><a href="../using-npm/package-spec.html">package spec</a></li>
  449. <li><a href="../using-npm/developers.html">npm developers</a></li>
  450. <li><a href="../configuring-npm/package-json.html">package.json</a></li>
  451. <li><a href="../commands/npm-install.html">npm install</a></li>
  452. <li><a href="../configuring-npm/folders.html">npm folders</a></li>
  453. <li><a href="../commands/npm-config.html">npm config</a></li>
  454. <li><a href="../configuring-npm/npmrc.html">npmrc</a></li>
  455. </ul></div>
  456. <footer id="edit">
  457. <a href="https://github.com/npm/cli/edit/latest/docs/lib/content/commands/npm-link.md">
  458. <svg role="img" viewBox="0 0 16 16" width="16" height="16" fill="currentcolor" style="vertical-align: text-bottom; margin-right: 0.3em;">
  459. <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>
  460. </svg>
  461. Edit this page on GitHub
  462. </a>
  463. </footer>
  464. </section>
  465. </body></html>