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
2019-06-04 16:29:40 -03:00

16 lines
346 B
Markdown

# npx
> Execute binaries from `npm` packages.
> More information: <https://www.npmjs.com/package/npx>.
- 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`