1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/npx.md

16 lines
289 B
Markdown
Raw Normal View History

2018-01-06 21:19:04 +08:00
# npx
> Execute binaries from `npm` packages.
- Execute the binary from a given npm module:
`npx {{module_name}}`
- In case a package has multiple binaries, specify the package name along with the binary:
`npx -p {{package_name}} {{module_name}}`
- View help contents:
`npx --help`