Difference between revisions of "Npm (software)"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) (Created page with "{lowercase} '''npm''' is the default package manager for Node.js (a JavaScript runtime environment). == Description == npm is automatically included when Node.js is...") |
Karl Jones (Talk | contribs) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | {lowercase} | + | {{lowercase}} |
'''npm''' is the default [[package manager]] for [[Node.js]] (a JavaScript runtime environment). | '''npm''' is the default [[package manager]] for [[Node.js]] (a JavaScript runtime environment). | ||
Line 24: | Line 24: | ||
* [https://en.wikipedia.org/wiki/Npm_(software) npm (software)] @ Wikipedia | * [https://en.wikipedia.org/wiki/Npm_(software) npm (software)] @ Wikipedia | ||
+ | * [https://docs.npmjs.com/getting-started/installing-npm-packages-globally Installing npm packages globally] | ||
+ | * [https://docs.npmjs.com/getting-started/fixing-npm-permissions Fixing npm permissions] | ||
[[Category:JavaScript]] | [[Category:JavaScript]] | ||
[[Category:Software]] | [[Category:Software]] |
Latest revision as of 12:34, 7 June 2017
npm is the default package manager for Node.js (a JavaScript runtime environment).
Description
npm is automatically included when Node.js is installed.
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.