nodejs有很多好用的命令行工具,那么怎么来运行nodejs安装的命令呢?有以下几种方式
全局安装命令,然后可以在任何目录下运行命令
1
npm install -g <package>
在package.json中添加scripts字段,然后通过npm run
<script>
来运行命令,这种方式可以运行工程模块中.bin目录下的命令1
2
3
4"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"start": "node index.js"
}使用npx命令,既可以运行未安装的命令(运行时需下载),也可以运行工程模块中.bin目录下的命令
1
2npx <package>[@<version>] [<args>]
npx <command> [<args>]