Problem creating project with Angular CLI

0

A nice personal day,

I'm starting my studies in Angular 2, I use docker to manage my containers.

At the beginning I'm already having problems, the creation of the project has been presenting errors.

When you run the command:

ng new primeiro-projeto

The following problem occurs ...

I'vebeenonthisscreenforalongtimeandnothing,apparentlythecreationoftheprojectjustcrashed...

Versionsused.

Would anyone tell me why I made a mistake?

    
asked by anonymous 06.08.2018 / 16:36

1 answer

0

Use git bash (which comes when you install Git for Windows). The npm has problems in Windows mainly with this load bar when installing packages.

You can also test using the flag to remove the load / progress bar:

npm install --no-progress

I hope I have helped.

    
07.08.2018 / 17:47