npx
指令从npm5.2就内置了,可以在线调用npm包而不用下载到本地再执行
ie: cowsay 指令
1 | ➜ ~ npx cowsay owow |
可以直接编译&运行ts文件
1 | npx ts-node script.ts |
可以执行 create-react-app 脚本
1 | npx create-react-app . |
也可以调用自己写的GitHub gist代码片段
1 | ➜ my-project git:(main) npx https://gist.github.com/miloweimo/491623a136c0ceed0371c10ae95c86a0 |
参考
我写的hellojs https://gist.github.com/miloweimo/491623a136c0ceed0371c10ae95c86a0
别人写的hellojs https://gist.github.com/Tynael/0861d31ea17796c9a5b4a0162eb3c1e8
别人写的readme https://gist.github.com/CarsonSlovoka/ad04ee083bd2dde825060160546b8059