Npm (software)


npm is a package manager for the JavaScript programming language. It is the default package manager for the JavaScript runtime environment Node.js. It consists of a command line client, also called npm, and an online database of public and paid-for private packages, called the npm registry. The registry is accessed via the client, and the available packages can be browsed and searched via the npm website. The package manager and the registry are managed by npm, Inc.

History

npm is written entirely in JavaScript and was developed by Isaac Z. Schlueter as a result of having "seen module packaging done terribly" and with inspiration from other similar projects such as PEAR and CPAN.

Notable breakages

npm is included as a recommended feature in Node.js installer.
npm consists of a command line client that interacts with a remote registry. It allows users to consume and distribute JavaScript modules that are available on the registry.
Packages on the registry are in CommonJS format and include a metadata file in JSON format.
Over 477,000 packages are available on the main npm registry. The registry has no vetting process for submission, which means that packages found there can be low quality, insecure, or malicious.
Instead, npm relies on user reports to take down packages if they violate policies by being low quality, insecure or malicious. npm exposes statistics including number of downloads and number of depending packages to assist developers in judging the quality of packages.
In npm version 6, the audit feature was introduced to help developers identify and fix vulnerability and security issues in installed packages. The source of security issues were taken from reports found on the Node Security Platform, and has been integrated with npm since npm's acquisition of NSP.

Usage

npm can manage packages that are local dependencies of a particular project, as well as globally-installed JavaScript tools.
When used as a dependency manager for a local project, npm can install, in one command, all the dependencies of a project through the package.json file.
In the package.json file, each dependency can specify a range of valid versions using the semantic versioning scheme, allowing developers to auto-update their packages while at the same time avoiding unwanted breaking changes.
npm also provides version-bumping tools for developers to tag their packages with a particular version. npm also provides the package-lock.json file which has the entry of the exact version used by the project after evaluating semantic versioning in package.json.

Alternatives

There are a number of open-source alternatives to npm for installing modular JavaScript, including ied, pnpm, npmd, and yarn, the last of which was released by Facebook in October 2016. They are all compatible with the public npm registry and use it by default, but provide different client-side experiences, usually focused on improving performance and determinism compared to the npm client.
At JSConf 2019 npm's former CTO announced a new federated package registry Entropic which is aimed at decentralisation of Javascript commons.

The company

The company behind the npm software is npm, inc, based in Oakland, California. The CEO Bryan Bogensberger who joined the company in July 2018 resigned in September 2019. Before his resignation, npm co-founder Laurie Voss resigned in July 2019.
GitHub announced in March 2020 it is acquiring npm, inc.