如何使用单个命令同时运行nodejs和angular4?

时间:2017-12-02 13:01:13

标签: node.js angular

我在服务器端有angular4和nodesjs。如何组合package.json中的脚本,以便节点服务器和角度单次启动?

1 个答案:

答案 0 :(得分:0)

使用concurrentlynodemon

使用

安装这些软件包
npm i concurrently nodemon

将以下行添加到 package.json

scripts": {
    "serve": "concurrently \"ng serve\" \"./node_modules/nodemon/bin/nodemon.js ./node_server/bin/www\"",
}

使用运行脚本

npm run serve