How to create a localhost server to run an AngularJS project

前端 未结 13 775
迷失自我
迷失自我 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:34

    You can begin by installing Node.js from terminal or cmd:

    apt-get install nodejs-legacy npm
    

    Then install the dependencies:

    npm install
    

    Then, start the server:

    npm start
    

提交回复
热议问题