mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
29 lines
379 B
Markdown
29 lines
379 B
Markdown
![]() |
# npm run
|
||
|
|
||
|
> Run a script.
|
||
|
> More information: <https://www.npmjs.com>.
|
||
|
|
||
|
- Run a script:
|
||
|
|
||
|
`npm run {{script_name}}`
|
||
|
|
||
|
- Pass arguments to a script:
|
||
|
|
||
|
`npm run {{script_name}} -- {{argument}} {{--option}}`
|
||
|
|
||
|
- Run a script named `start`:
|
||
|
|
||
|
`npm start`
|
||
|
|
||
|
- Run a script named `stop`:
|
||
|
|
||
|
`npm stop`
|
||
|
|
||
|
- Run a script named `restart`:
|
||
|
|
||
|
`npm restart`
|
||
|
|
||
|
- Run a script named `test`:
|
||
|
|
||
|
`npm test`
|