main
@reggi/path-to-regexp
dependabot/npm_and_yarn/main/copy-to-clipboard-4.0.2
dependabot/npm_and_yarn/main/eslint-10.4.0
dependabot/npm_and_yarn/main/npmcli/eslint-config-7.0.0
dependabot/npm_and_yarn/main/proc-log-7.0.0
dependabot/npm_and_yarn/npm_and_yarn-826852524d
dependabot/npm_and_yarn/npm_and_yarn-ab9a7f4bc2
deprecate-totp-2fa
dhei/classic-tokens
gat-bypass-2fa-docs
jpg619/fix-accessibility-content-flow
jpg619/version-bump-tar-2
kartykp/gat-bypass-2fa-docs
kartykp/upgrade-path-to-regex
main
maitxn/version-bump-tar
patch-1
reggi/cache-based-on-version
reggi/dev-engines
reggi/fix-transform-prettier
reggi/overrides
update-search-sensitivity
| 1 | --- |
| 2 | title: npm package scope, access level, and visibility |
| 3 | --- |
| 4 | |
| 5 | Visibility of npm packages depends on the scope (namespace) in which the package is contained, and the access level (private or public) set for the package. |
| 6 | |
| 7 | <Note> |
| 8 | |
| 9 | **Note:** To create organization-scoped packages, you must first create an organization. For more information, see "[Creating an organization](https://docs.npmjs.com/creating-an-organization)". |
| 10 | |
| 11 | </Note> |
| 12 | |
| 13 | ## npm Package Access Matrix |
| 14 | |
| 15 | <DataTable |
| 16 | headers={["Scope", "Access level", "Can view and download", "Can write (publish)"]} |
| 17 | rows={[ |
| 18 | ["Org", "Private", "Members of a team in the organization with read access to the package", "Members of a team in the organization with read and write access to the package"], |
| 19 | ["Org", "Public", "Everyone", "Members of a team in the organization with read and write access to the package"], |
| 20 | ["User", "Private", "The package owner and users who have been granted read access to the package", "The package owner and users who have been granted read and write access to the package"], |
| 21 | ["User", "Public", "Everyone", "The package owner and users who have been granted read and write access to the package"], |
| 22 | ["Unscoped", "Public", "Everyone", "The package owner and users who have been granted read and write access to the package"] |
| 23 | ]} |
| 24 | /> |
| 25 | |
| 26 | <Note> |
| 27 | |
| 28 | **Note:** Only user accounts can create and manage unscoped packages. Organizations can only manage scoped packages. |
| 29 | |
| 30 | </Note> |