-
使用npm-run命令执行本地安装的节点模块可执行文件
资源介绍
npm运行
从命令行在node_modules中运行可执行文件
使用npm-run可以确保您在命令行和package.json脚本中使用了相同版本的软件包。
npm生命周期脚本可用的任何可执行文件都可用于npm-run 。
用法
> npm install mocha # mocha installed in ./node_modules
> npm-run mocha test/ * # uses locally installed mocha executable
> npm-run --help
Usage: npm-run command [...args]
Options:
--version Display version & exit.
--help Display this help & exit.
Hint: to print augmented path use:
npm-run node -p process.env.PATH
安装
> npm install -g npm-run
程序化API
npm-run的API基本上包装了核心的ch