The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.

This URL has Read-Only access.

Statistics
| Branch: | Revision:

main_repo / deps / npm / html / doc / adduser.html @ d46ebffb

History | View | Annotate | Download (2.05 KB)

1
<!doctype html>
2
<html>
3
  <title>adduser</title>
4
  <meta http-equiv="content-type" value="text/html;utf-8">
5
  <link rel="stylesheet" type="text/css" href="../static/style.css">
6

    
7
  <body>
8
    <div id="wrapper">
9
<h1><a href="../doc/adduser.html">adduser</a></h1> <p>Add a registry user account</p>
10

    
11
<h2 id="SYNOPSIS">SYNOPSIS</h2>
12

    
13
<pre><code>npm adduser</code></pre>
14

    
15
<h2 id="DESCRIPTION">DESCRIPTION</h2>
16

    
17
<p>Create or verify a user named <code>&lt;username&gt;</code> in the npm registry, and
18
save the credentials to the <code>.npmrc</code> file.</p>
19

    
20
<p>The username, password, and email are read in from prompts.</p>
21

    
22
<p>You may use this command to change your email address, but not username
23
or password.</p>
24

    
25
<p>To reset your password, go to <a href="http://admin.npmjs.org/">http://admin.npmjs.org/</a></p>
26

    
27
<p>You may use this command multiple times with the same user account to
28
authorize on a new machine.</p>
29

    
30
<h2 id="CONFIGURATION">CONFIGURATION</h2>
31

    
32
<h3 id="registry">registry</h3>
33

    
34
<p>Default: http://registry.npmjs.org/</p>
35

    
36
<p>The base URL of the npm package registry.</p>
37

    
38
<h2 id="SEE-ALSO">SEE ALSO</h2>
39

    
40
<ul><li><a href="../doc/registry.html">registry(1)</a></li><li><a href="../doc/config.html">config(1)</a></li><li><a href="../doc/owner.html">owner(1)</a></li><li><a href="../doc/whoami.html">whoami(1)</a></li></ul>
41
</div>
42
<p id="footer">adduser &mdash; npm@1.2.17</p>
43
<script>
44
;(function () {
45
var wrapper = document.getElementById("wrapper")
46
var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
47
  .filter(function (el) {
48
    return el.parentNode === wrapper
49
        && el.tagName.match(/H[1-6]/)
50
        && el.id
51
  })
52
var l = 2
53
  , toc = document.createElement("ul")
54
toc.innerHTML = els.map(function (el) {
55
  var i = el.tagName.charAt(1)
56
    , out = ""
57
  while (i > l) {
58
    out += "<ul>"
59
    l ++
60
  }
61
  while (i < l) {
62
    out += "</ul>"
63
    l --
64
  }
65
  out += "<li><a href='#" + el.id + "'>" +
66
    ( el.innerText || el.text || el.innerHTML)
67
    + "</a>"
68
  return out
69
}).join("\n")
70
toc.id = "toc"
71
document.body.appendChild(toc)
72
})()
73
</script>
74
</body></html>