How to import an existing project with angular-cli

0

Hello, I downloaded an angled 4 project with css bootstrap, I would now like to work on this project, making some changes for study effect. It turns out that I do not know how to make an amount of this already existing project to run it with the ng command it serves.

    
asked by anonymous 16.01.2018 / 16:43

1 answer

1

Basically you should have angular-cli installed, and in the project root folder (usually src) you should open a command prompt and run the npm install command that will download all dependencies for this project.

To run this command at the prompt, you need nodejs installed as well.

After this steps you run a ng serve to upload the local server.

    
16.01.2018 / 19:16