📌  相关文章
📜  如何同时运行 angular 和 node - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:49.353000             🧑  作者: Mango

代码示例1
#Add following script to package.json
"both": "concurrently \"ng serve\" \"cd ../server && nodemon server\""

#Use following in the terminal to run the code
npm run both