npx [command]
Execute binaries from npm packages
Arguments
Options
Name | Description |
---|
--package, -p <package> | Package to be installed |
--cache <path> | Location of the npm cache |
--always-spawn | Always spawn a child process to execute the command |
-y | Execute npx command without prompting for confirmation |
--no-install | Skip installation if a package is missing |
--userconfig <path> | Path to user npmrc |
--call, -c <script> | Execute string as if inside `npm run-script` |
--shell, -s <shell> | Shell to execute the command with, if any |
--shell-auto-fallback <shell-fallback> | Generate shell code to use npx as the "command not found" fallback |
--ignore-existing | Ignores existing binaries in $PATH, or in the localproject. This forces npx to do a temporary install and use the latest version |
--quiet, -q | Suppress output from npx itself. Subcommands will not be affected |
--npm <path to binary> | Npm binary to use for internal operations |
--node-arg, -n <arg> | Extra node argument when calling a node binary |
--version, -v | Show version number |
--help, -h | Show help |