npx 是npm 5.2版本后的一个指令
使用npx和npm的区别
npm方法
npm install -g create-react-app
create-react-app my-app
npx方法
npx create-react-app my-app
npx的优势:临时安装 create-react-app 包,命令完成后create-react-app 会删掉,不会出现在 global 中。下次再执行,还是会重新临时安装。
2个不常用的优势
(1)、npx 甚至支持运行远程仓库的可执行文件:
npx github:piuccio/cowsay hello
(2)、指定node版本来运行npm scripts:
npx -p node@8 npm run build
网友评论