Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@evocateur/libnpmaccess
Advanced tools
libnpmaccess
is a Node.js
library that provides programmatic access to the guts of the npm CLI's npm access
command and its various subcommands. This includes managing account 2FA,
listing packages and permissions, looking at package collaborators, and defining
package permissions for users, orgs, and teams.
const access = require('libnpmaccess')
// List all packages @zkat has access to on the npm registry.
console.log(Object.keys(await access.lsPackages('zkat')))
$ npm install libnpmaccess
The npm team enthusiastically welcomes contributions and project participation! There's a bunch of things you can do if you want to contribute! The Contributor Guide has all the information you need for everything from reporting bugs to contributing entire new features. Please don't hesitate to jump in if you'd like to, or even ask us questions if something isn't clear.
All participants and maintainers in this project are expected to follow Code of Conduct, and just generally be excellent to each other.
Please refer to the Changelog for project history details, too.
Happy hacking!
opts
for libnpmaccess
commandslibnpmaccess
uses npm-registry-fetch
.
All options are passed through directly to that library, so please refer to its
own opts
documentation
for options that can be passed in.
A couple of options of note for those in a hurry:
opts.token
- can be passed in and will be used as the authentication token for the registry. For other ways to pass in auth details, see the n-r-f docs.opts.otp
- certain operations will require an OTP token to be passed in. If a libnpmaccess
command fails with err.code === EOTP
, please retry the request with {otp: <2fa token>}
opts.Promise
- If you pass this in, the Promises returned by libnpmaccess
commands will use this Promise class instead. For example: {Promise: require('bluebird')}
> access.public(spec, [opts]) -> Promise
spec
must be an npm-package-arg
-compatible
registry spec.
Makes package described by spec
public.
await access.public('@foo/bar', {token: 'myregistrytoken'})
// `@foo/bar` is now public
> access.restricted(spec, [opts]) -> Promise
spec
must be an npm-package-arg
-compatible
registry spec.
Makes package described by spec
private/restricted.
await access.restricted('@foo/bar', {token: 'myregistrytoken'})
// `@foo/bar` is now private
> access.grant(spec, team, permissions, [opts]) -> Promise
spec
must be an npm-package-arg
-compatible
registry spec. team
must be a fully-qualified team name, in the scope:team
format, with or without the @
prefix, and the team must be a valid team within
that scope. permissions
must be one of 'read-only'
or 'read-write'
.
Grants read-only
or read-write
permissions for a certain package to a team.
await access.grant('@foo/bar', '@foo:myteam', 'read-write', {
token: 'myregistrytoken'
})
// `@foo/bar` is now read/write enabled for the @foo:myteam team.
> access.revoke(spec, team, [opts]) -> Promise
spec
must be an npm-package-arg
-compatible
registry spec. team
must be a fully-qualified team name, in the scope:team
format, with or without the @
prefix, and the team must be a valid team within
that scope. permissions
must be one of 'read-only'
or 'read-write'
.
Removes access to a package from a certain team.
await access.revoke('@foo/bar', '@foo:myteam', {
token: 'myregistrytoken'
})
// @foo:myteam can no longer access `@foo/bar`
> access.tfaRequired(spec, [opts]) -> Promise
spec
must be an npm-package-arg
-compatible
registry spec.
Makes it so publishing or managing a package requires using 2FA tokens to complete operations.
await access.tfaRequires('lodash', {token: 'myregistrytoken'})
// Publishing or changing dist-tags on `lodash` now require OTP to be enabled.
> access.tfaNotRequired(spec, [opts]) -> Promise
spec
must be an npm-package-arg
-compatible
registry spec.
Disabled the package-level 2FA requirement for spec
. Note that you will need
to pass in an otp
token in opts
in order to complete this operation.
await access.tfaNotRequired('lodash', {otp: '123654', token: 'myregistrytoken'})
// Publishing or editing dist-tags on `lodash` no longer requires OTP to be
// enabled.
> access.lsPackages(entity, [opts]) -> Promise
entity
must be either a valid org or user name, or a fully-qualified team name
in the scope:team
format, with or without the @
prefix.
Lists out packages a user, org, or team has access to, with corresponding permissions. Packages that the access token does not have access to won't be listed.
In order to disambiguate between users and orgs, two requests may end up being made when listing orgs or users.
For a streamed version of these results, see
access.lsPackages.stream()
.
await access.lsPackages('zkat', {
token: 'myregistrytoken'
})
// Lists all packages `@zkat` has access to on the registry, and the
// corresponding permissions.
> access.lsPackages.stream(scope, [team], [opts]) -> Stream
entity
must be either a valid org or user name, or a fully-qualified team name
in the scope:team
format, with or without the @
prefix.
Streams out packages a user, org, or team has access to, with corresponding
permissions, with each stream entry being formatted like [packageName, permissions]
. Packages that the access token does not have access to won't be
listed.
In order to disambiguate between users and orgs, two requests may end up being made when listing orgs or users.
The returned stream is a valid asyncIterator
.
for await (let [pkg, perm] of access.lsPackages.stream('zkat')) {
console.log('zkat has', perm, 'access to', pkg)
}
// zkat has read-write access to eggplant
// zkat has read-only access to @npmcorp/secret
> access.lsCollaborators(spec, [user], [opts]) -> Promise
spec
must be an npm-package-arg
-compatible
registry spec. user
must be a valid user name, with or without the @
prefix.
Lists out access privileges for a certain package. Will only show permissions
for packages to which you have at least read access. If user
is passed in, the
list is filtered only to teams that user happens to belong to.
For a streamed version of these results, see access.lsCollaborators.stream()
.
await access.lsCollaborators('@npm/foo', 'zkat', {
token: 'myregistrytoken'
})
// Lists all teams with access to @npm/foo that @zkat belongs to.
> access.lsCollaborators.stream(spec, [user], [opts]) -> Stream
spec
must be an npm-package-arg
-compatible
registry spec. user
must be a valid user name, with or without the @
prefix.
Stream out access privileges for a certain package, with each entry in [user, permissions]
format. Will only show permissions for packages to which you have
at least read access. If user
is passed in, the list is filtered only to teams
that user happens to belong to.
The returned stream is a valid asyncIterator
.
for await (let [usr, perm] of access.lsCollaborators.stream('npm')) {
console.log(usr, 'has', perm, 'access to npm')
}
// zkat has read-write access to npm
// iarna has read-write access to npm
FAQs
programmatic library for `npm access` commands
The npm package @evocateur/libnpmaccess receives a total of 63,972 weekly downloads. As such, @evocateur/libnpmaccess popularity was classified as popular.
We found that @evocateur/libnpmaccess demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.