npm并行执行命令

我们先来看下命令相关的符号

符号作用
&&顺序执行多条命令,当碰到执行的命令出错后停止,不再执行后续命令
&并行执行多条命令

1,命令测试

1,&&

// test/node1.js
import process from "process";

setTimeout(console.log, 3000, "node1");
process.exit(1);
// test/node2.js
setTimeout(console.log, 1000, "node2");
{
  "scripts": {
    "node1": "node test/node1.js",
    "node2": "node test/node2.js",
    "all": "npm run node1 && npm run node2",
  },
}

执行npm run all

  • windows 和 mac 都打印node2
  • 注释掉 test/node1.js 中的 process.exit(1);,windows 和 mac 都先打印node1 --> 再打印node2

windows 和 mac 表现一致。

2,&

// test/node1.js
setTimeout(console.log, 3000, "node1");

// test/node2.js
setTimeout(console.log, 1000, "node2");
{
  "scripts": {
    "node1": "node test/node1.js",
    "node2": "node test/node2.js",
    "all": "npm run node1 & npm run node2",
  },
}

执行npm run all

  • windows:打印node1 --> 打印node2。说明 &windows中顺序执行
  • mac:打印node2 --> 打印node1。说明 &mac中并行执行

& 在windows中不生效。

2,问题

  1. 上面只是简单的测试,实际上在 windows 中的表现可能还有区别。
  2. 顺序和并行的区别之一是,对于启动本地监听来说,算作命令执行完成停止(监听程序正常运行),不再执行后续命令。

举例:下面是一个 vite 项目引入 tailwindcss后,需要执行的2个命令

  • npm run dev启动本地项目
  • npm run tail启动 tailwindcss 监听文件变化,实时编译。
{
  "scripts": {
    "serve": "npm run dev && npm run tail",
    "dev": "vite",
    "tail": "tailwindcss -i ./src/style.css -o ./src/output.css --watch",
  },
}

实际表现中,如果用&&顺序执行npm run serve,则执行完第1个命令npm run dev后,不再执行第2个命令。

所以,一般这样的情况,都会选择并行执行。但&在 windows 中不是并行。所以需要跨平台的解决方案。

3,跨平台并行

2.1,concurrently

concurrently-github

npm i concurrently 安装后使用

{
  "scripts": {
    "serve": "concurrently \"npm run dev\" \"npm run tail\"",
    "dev": "vite",
    "tail": "tailwindcss -i ./src/style.css -o ./src/output.css --watch",
  },
}

npm run serve 即可并行执行。

2.2,npm-run-all

npm-run-all-github

npm i npm-run-all 安装后使用

{
  "scripts": {
    "serve": "npm-run-all --parallel dev tail",
    "dev": "vite",
    "tail": "tailwindcss -i ./src/style.css -o ./src/output.css --watch",
  },
}

npm run serve 即可并行执行。

使用 npm-run-all 的问题: CTRL+C无法退出监听程序,只能关闭终端来退出。

以上。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

下雪天的夏风

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值