LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

npm-star

Mark a package as favorite on the npm registry

TLDR

Star a package
$ npm star [package]
copy
Star multiple packages
$ npm star [package1] [package2]
copy
View your starred packages
$ npm stars
copy
Unstar a package
$ npm unstar [package]
copy

SYNOPSIS

npm star package...

DESCRIPTION

npm star marks one or more packages as favorites on the npm registry. It is a way to show appreciation for packages you find useful. Requires npm authentication via npm login.Starred packages can be listed later with npm stars. To remove a star, use npm unstar.

PARAMETERS

--registry url

Use the specified registry URL instead of the default.
--otp code
Provide a one-time password for two-factor authentication.

INSTALL

sudo pacman -S npm
copy
sudo apk add npm
copy
brew install npm
copy

CAVEATS

Requires being logged in to npm (npm login). Stars are public and associated with your npm account.

SEE ALSO

Copied to clipboard
Kai