1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 17:15:23 +02:00

npx: add page (#1857)

This commit is contained in:
白霁 2018-01-06 21:19:04 +08:00 committed by Agniva De Sarker
parent 7b9cb25a97
commit 89ceaeeddb

15
pages/common/npx.md Normal file
View file

@ -0,0 +1,15 @@
# 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`