The code for this repo is now a workspace in the npm CLI repo.
github.com/npm/cli
You can find the workspace in /workspaces/libnpmexec
Please file bugs and feature requests as issues on the CLI and tag the issue with "ws:libnpmexec".
github.com/npm/cli/issues
The npm exec
(npx
) Programmatic API
npm install libnpmexec
const libexec = require('libnpmexec')
await libexec({
args: ['yosay', 'Bom dia!'],
cache: '~/.npm/_cacache',
npxCache: '~/.npm/_npx',
yes: true,
})
opts
:args
: List of pkgs to execute Array, defaults to[]
call
: An alternative command to run when usingpackages
option String, defaults to empty string.cache
: The path location to where the npm cache folder is placed StringnpxCache
: The path location to where the npx cache folder is placed Stringcolor
: Output should use color? Boolean, defaults tofalse
localBin
: Location to thenode_modules/.bin
folder of the local project to start scanning for bin files String, defaults to./node_modules/.bin
. libexec will walk up the directory structure looking fornode_modules/.bin
folders in parent folders that might satisfy the currentarg
and will use that bin if found.locationMsg
: Overrides "at location" message when entering interactive mode Stringlog
: Sets an optional logger Object, defaults toproc-log
module usage.globalBin
: Location to the global space bin folder, same as:$(npm bin -g)
String, defaults to empty string.output
: A function to print output to Functionpackages
: A list of packages to be used (possibly fetch from the registry) Array, defaults to[]
path
: Location to where to read local project info (package.json
) String, defaults to.
runPath
: Location to where to execute the script String, defaults to.
scriptShell
: Default shell to be used String, defaults tosh
on POSIX systems,process.env.ComSpec
ORcmd
on Windowsyes
: Should skip download confirmation prompt when fetching missing packages from the registry? Booleanregistry
,cache
, and more options that are forwarded to @npmcli/arborist and pacote Object