| title | npm | ||
|---|---|---|---|
| description | A reference page for the npm resource | ||
| sidebar |
|
The npm resource reference. This resource installs global npm packages.
- globalInstall: (array[string | { name: string, version: string }]) An array of global packages to install. This array accepts either the name of the package (installs the latest version) or an object with name and version.
[
{
"type": "npm",
"globalInstall": [
"typescript",
{
"name": "nodemon",
"version": "3.1.10"
}
]
}
]