1<!DOCTYPE html><html><head> 2<meta charset="utf-8"> 3<title>npm-access</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-access">npm-access</h1> 140<span class="description">Set access level on published packages</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="#details">Details</a></li><li><a href="#configuration">Configuration</a></li><ul><li><a href="#json"><code>json</code></a></li><li><a href="#otp"><code>otp</code></a></li><li><a href="#registry"><code>registry</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 access list packages [<user>|<scope>|<scope:team> [<package>] 150npm access list collaborators [<package> [<user>]] 151npm access get status [<package>] 152npm access set status=public|private [<package>] 153npm access set mfa=none|publish|automation [<package>] 154npm access grant <read-only|read-write> <scope:team> [<package>] 155npm access revoke <scope:team> [<package>] 156</code></pre> 157<p>Note: This command is unaware of workspaces.</p> 158<h3 id="description">Description</h3> 159<p>Used to set access controls on private packages.</p> 160<p>For all of the subcommands, <code>npm access</code> will perform actions on the packages 161in the current working directory if no package name is passed to the 162subcommand.</p> 163<ul> 164<li> 165<p>public / restricted (deprecated): 166Set a package to be either publicly accessible or restricted.</p> 167</li> 168<li> 169<p>grant / revoke (deprecated): 170Add or remove the ability of users and teams to have read-only or read-write 171access to a package.</p> 172</li> 173<li> 174<p>2fa-required / 2fa-not-required (deprecated): 175Configure whether a package requires that anyone publishing it have two-factor 176authentication enabled on their account.</p> 177</li> 178<li> 179<p>ls-packages (deprecated): 180Show all of the packages a user or a team is able to access, along with the 181access level, except for read-only public packages (it won't print the whole 182registry listing)</p> 183</li> 184<li> 185<p>ls-collaborators (deprecated): 186Show all of the access privileges for a package. Will only show permissions 187for packages to which you have at least read access. If <code><user></code> is passed in, 188the list is filtered only to teams <em>that</em> user happens to belong to.</p> 189</li> 190<li> 191<p>edit (not implemented)</p> 192</li> 193</ul> 194<h3 id="details">Details</h3> 195<p><code>npm access</code> always operates directly on the current registry, configurable 196from the command line using <code>--registry=<registry url></code>.</p> 197<p>Unscoped packages are <em>always public</em>.</p> 198<p>Scoped packages <em>default to restricted</em>, but you can either publish them as 199public using <code>npm publish --access=public</code>, or set their access as public using 200<code>npm access public</code> after the initial publish.</p> 201<p>You must have privileges to set the access of a package:</p> 202<ul> 203<li>You are an owner of an unscoped or scoped package.</li> 204<li>You are a member of the team that owns a scope.</li> 205<li>You have been given read-write privileges for a package, either as a member 206of a team or directly as an owner.</li> 207</ul> 208<p>If you have two-factor authentication enabled then you'll be prompted to provide a second factor, or may use the <code>--otp=...</code> option to specify it on 209the command line.</p> 210<p>If your account is not paid, then attempts to publish scoped packages will 211fail with an HTTP 402 status code (logically enough), unless you use 212<code>--access=public</code>.</p> 213<p>Management of teams and team memberships is done with the <code>npm team</code> command.</p> 214<h3 id="configuration">Configuration</h3> 215<h4 id="json"><code>json</code></h4> 216<ul> 217<li>Default: false</li> 218<li>Type: Boolean</li> 219</ul> 220<p>Whether or not to output JSON data, rather than the normal output.</p> 221<ul> 222<li>In <code>npm pkg set</code> it enables parsing set values with JSON.parse() before 223saving them to your <code>package.json</code>.</li> 224</ul> 225<p>Not supported by all npm commands.</p> 226<h4 id="otp"><code>otp</code></h4> 227<ul> 228<li>Default: null</li> 229<li>Type: null or String</li> 230</ul> 231<p>This is a one-time password from a two-factor authenticator. It's needed 232when publishing or changing package permissions with <code>npm access</code>.</p> 233<p>If not set, and a registry response fails with a challenge for a one-time 234password, npm will prompt on the command line for one.</p> 235<h4 id="registry"><code>registry</code></h4> 236<ul> 237<li>Default: "<a href="https://registry.npmjs.org/">https://registry.npmjs.org/</a>"</li> 238<li>Type: URL</li> 239</ul> 240<p>The base URL of the npm registry.</p> 241<h3 id="see-also">See Also</h3> 242<ul> 243<li><a href="https://npm.im/libnpmaccess"><code>libnpmaccess</code></a></li> 244<li><a href="../commands/npm-team.html">npm team</a></li> 245<li><a href="../commands/npm-publish.html">npm publish</a></li> 246<li><a href="../commands/npm-config.html">npm config</a></li> 247<li><a href="../using-npm/registry.html">npm registry</a></li> 248</ul></div> 249 250<footer id="edit"> 251<a href="https://github.com/npm/cli/edit/latest/docs/content/commands/npm-access.md"> 252<svg role="img" viewBox="0 0 16 16" width="16" height="16" fill="currentcolor" style="vertical-align: text-bottom; margin-right: 0.3em;"> 253<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> 254</svg> 255Edit this page on GitHub 256</a> 257</footer> 258</section> 259 260 261 262</body></html>