我在文件夹“UI”
中安装了Angular4CLI的node.js项目node.js package.json:
...
"scripts": {
"start": "node index.js"
}
...
和Angular package.json:
...
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
}
...
如何同时启动node.js和angular?
我尝试过错误的解决方案:
"scripts": {
"start": "node index.js && ng serve",
"start-2": "node index.js && cd .\ui\ && ng serve",
}
请帮忙。 谢谢提前
答案 0 :(得分:0)
我建议调查角度普遍。
https://github.com/angular/universal-starter
文档使用清楚,并且那里也有一些不错的种子库。
寻找qdoubles材质预渲染webpack-starter,将现有应用程序合并到此启动器中也非常简单。