npx
最后更新于:2022-04-02 03:41:49
[TOC]
## 概述
## 安装
```
npm install -g npx
```
## 场景
### 调用项目内的modules 的命令
如何不用 npx 想调用项目内的命令
```
node-modules/.bin/mocha
```
使用 npx
```
npx mocha
```
### 自动下载不存在的模块命令
```
npx http-server
```
若没有http-server ,则会自动下载 http-server
';