Documentación offline npm latest

npm-stop

latest Documentación oficial Licencia Artistic-2.0Descargado el 2026-08-02

En esta página

Synopsis#

Description#

This runs a predefined command specified in the "stop" property of a package's "scripts" object.

Unlike with npm start, there is no default script that will run if the "stop" property is not defined.

Example#

{
  "scripts": {
    "stop": "node bar.js"
  }
}
npm stop

> npm@x.x.x stop
> node bar.js

(bar.js output would be here)

Configuration#

See Also#