mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
29 lines
479 B
Markdown
29 lines
479 B
Markdown
![]() |
# npm run
|
||
|
|
||
|
> Komut çalıştırır.
|
||
|
> Daha fazla bilgi için: <https://docs.npmjs.com/cli/commands/npm-run-script>.
|
||
|
|
||
|
- Bir komut çalıştırır:
|
||
|
|
||
|
`npm run {{komut_adı}}`
|
||
|
|
||
|
- Komuta argüman gönderir:
|
||
|
|
||
|
`npm run {{komut_adı}} -- {{argüman}} {{--seçenek}}`
|
||
|
|
||
|
- `start` isimli komudu çalıştırır:
|
||
|
|
||
|
`npm start`
|
||
|
|
||
|
- `stop` isimli komudu çalıştırır:
|
||
|
|
||
|
`npm stop`
|
||
|
|
||
|
- `restart` isimli komudu çalıştırır:
|
||
|
|
||
|
`npm restart`
|
||
|
|
||
|
- `test` isimli komudu çalıştırır:
|
||
|
|
||
|
`npm test`
|