Skip to main content

Execute binaries from npm packages.

# To execute the binary from a given npm module:
npx <module_name> <command_arguments>

# To specify the package name along with the binary (in the case a package has multiple binaries):
npx --package <package_name> <module_name>

# To run a command if existis in the current path or in 'node_modules/.bin':
npx --no-install <command> <command_arguments>

# To execute the binary from a given npm module suppressing any output from 'npx' itself:
npx --quiet <module_name> <command_arguments>

# To display help:
npx --help