Daniel
Daniel

Reputation: 153

Angular cli - ng new stuck

Angular cli doesn't generate new project with command below. Command line just stops doing anything and I'm redirected to new windows explorer window.

I tried reinstalling angular cli Also tried reinstalling nodejs restarting PC

ng new new-app

There are no error messages, cli just hangs (tens of minutes). Other commands such as ng serve, ng generate works ok.

I also tried suggested:

npm uninstall -g @angular/cli
npm cache clean
npm install -g @angular/cli@latest

That did not solve my problem.

Basically i have no idea what to do with the problem. Is there another option how to generate new angular project?

Upvotes: 8

Views: 7884

Answers (3)

Prabhakaran M
Prabhakaran M

Reputation: 157

Install the specific version (lower version) of Angular CLI using the below command and try again,

npm install -g @angular/cli@version

Upvotes: 0

Masoud Bimar
Masoud Bimar

Reputation: 7801

Try this

Update Node Or Uninstall & install it {or npm cache clean --force}

then

npm uninstall -g @angular/cli
npm cache clean --force
npm config set registry "https://registry.npmjs.org"
npm install -g @angular/cli@latest

Try it in a new clean folder

Upvotes: 2

Ashish Shah
Ashish Shah

Reputation: 1132

Check in your username folder, if there is package.json and node_module exist. If they are there then delete them.

Notice: you may have created an angular project in your home/username directory. If you delete them it will work.

Upvotes: 0

Related Questions