How to create a localhost server to run an AngularJS project

前端 未结 13 814
迷失自我
迷失自我 2020-11-29 15:56

i have used Xampp and JetBrain WebStorm to run an AngularJS project. But it\'s complicated and low performance.Is there any other way to run an AngularJS project?

13条回答
  •  无人及你
    2020-11-29 16:29

    If you have used Visual Studio Community or any other edition for your angular project , then go to the project folder , first type

    C:\Project Folder>npm install -g http-server You will see as follows: + http-server@0.11.1 added 25 packages in 4.213s

    Then type C:\Project Folder>http-server –o

    You will see that your application automatically comes up at http://127.0.0.1:8080/

提交回复
热议问题