Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
4.5 KiB

  1. <!doctype html>
  2. <html>
  3. <title>npm-config</title>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" type="text/css" href="../../static/style.css">
  6. <link rel="canonical" href="https://www.npmjs.org/doc/cli/npm-config.html">
  7. <script async=true src="../../static/toc.js"></script>
  8. <body>
  9. <div id="wrapper">
  10. <h1><a href="../cli/npm-config.html">npm-config</a></h1> <p>Manage the npm configuration files</p>
  11. <h2 id="synopsis">SYNOPSIS</h2>
  12. <pre><code>npm config set &lt;key&gt; &lt;value&gt; [-g|--global]
  13. npm config get &lt;key&gt;
  14. npm config delete &lt;key&gt;
  15. npm config list [-l] [--json]
  16. npm config edit
  17. npm get &lt;key&gt;
  18. npm set &lt;key&gt; &lt;value&gt; [-g|--global]
  19. aliases: c</code></pre><h2 id="description">DESCRIPTION</h2>
  20. <p>npm gets its config settings from the command line, environment
  21. variables, <code>npmrc</code> files, and in some cases, the <code>package.json</code> file.</p>
  22. <p>See <a href="../files/npmrc.html">npmrc(5)</a> for more information about the npmrc files.</p>
  23. <p>See <code><a href="../misc/npm-config.html">npm-config(7)</a></code> for a more thorough discussion of the mechanisms
  24. involved.</p>
  25. <p>The <code>npm config</code> command can be used to update and edit the contents
  26. of the user and global npmrc files.</p>
  27. <h2 id="sub-commands">Sub-commands</h2>
  28. <p>Config supports the following sub-commands:</p>
  29. <h3 id="set">set</h3>
  30. <pre><code>npm config set key value</code></pre><p>Sets the config key to the value.</p>
  31. <p>If value is omitted, then it sets it to &quot;true&quot;.</p>
  32. <h3 id="get">get</h3>
  33. <pre><code>npm config get key</code></pre><p>Echo the config value to stdout.</p>
  34. <h3 id="list">list</h3>
  35. <pre><code>npm config list</code></pre><p>Show all the config settings. Use <code>-l</code> to also show defaults. Use <code>--json</code>
  36. to show the settings in json format.</p>
  37. <h3 id="delete">delete</h3>
  38. <pre><code>npm config delete key</code></pre><p>Deletes the key from all configuration files.</p>
  39. <h3 id="edit">edit</h3>
  40. <pre><code>npm config edit</code></pre><p>Opens the config file in an editor. Use the <code>--global</code> flag to edit the
  41. global config.</p>
  42. <h2 id="see-also">SEE ALSO</h2>
  43. <ul>
  44. <li><a href="../files/npm-folders.html">npm-folders(5)</a></li>
  45. <li><a href="../misc/npm-config.html">npm-config(7)</a></li>
  46. <li><a href="../files/package.json.html">package.json(5)</a></li>
  47. <li><a href="../files/npmrc.html">npmrc(5)</a></li>
  48. <li><a href="../cli/npm.html">npm(1)</a></li>
  49. </ul>
  50. </div>
  51. <table border=0 cellspacing=0 cellpadding=0 id=npmlogo>
  52. <tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18>&nbsp;</td></tr>
  53. <tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td colspan=6 style="width:60px;height:10px;background:#fff">&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td></tr>
  54. <tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2>&nbsp;</td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td></tr>
  55. <tr><td style="width:10px;height:10px;background:#fff" rowspan=2>&nbsp;</td></tr>
  56. <tr><td style="width:10px;height:10px;background:#fff">&nbsp;</td></tr>
  57. <tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
  58. <tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
  59. </table>
  60. <p id="footer">npm-config &mdash; npm@6.4.1</p>