如何在本地启动 Angular 2 应用程序,因为 npm start 不起作用
How to launch Angular 2 Application locally as npm start doesnot working
我按照下面提到的 link 来设置本地环境并启动应用程序。
https://angular.io/docs/ts/latest/guide/setup.html
当我使用 npm start 命令启动应用程序时,它抛出错误。
在指南中提到 npm start 不起作用
'npm start fails in Bash for Windows which does not support networking to servers as of January, 2017.'
那么你能告诉我如何启动 Angular 应用程序吗?
另一种解决方案是使用 angular-cli,我认为这是启动新 angular 项目的最佳方式。这是官方文档中的 link 。
在 angular-cli 中创建新项目很简单
ng new app-name
运行 它在控制台中...不在 "Bash for windows".
我成功地 运行 我的 Angular 应用程序与 npm 启动。
您正在使用哪个IDE。我使用 VS Code,那里有集成的终端控制台。 运行 npm start
它应该 运行 你的 application.You 也可以在 package.json 所在的项目文件夹中使用命令提示符通过 运行 启动你的应用程序宁命令 npm start
.
我按照下面提到的 link 来设置本地环境并启动应用程序。
https://angular.io/docs/ts/latest/guide/setup.html
当我使用 npm start 命令启动应用程序时,它抛出错误。 在指南中提到 npm start 不起作用
'npm start fails in Bash for Windows which does not support networking to servers as of January, 2017.'
那么你能告诉我如何启动 Angular 应用程序吗?
另一种解决方案是使用 angular-cli,我认为这是启动新 angular 项目的最佳方式。这是官方文档中的 link 。 在 angular-cli 中创建新项目很简单
ng new app-name
运行 它在控制台中...不在 "Bash for windows".
我成功地 运行 我的 Angular 应用程序与 npm 启动。
您正在使用哪个IDE。我使用 VS Code,那里有集成的终端控制台。 运行 npm start
它应该 运行 你的 application.You 也可以在 package.json 所在的项目文件夹中使用命令提示符通过 运行 启动你的应用程序宁命令 npm start
.