Cannot read property 'entries' of undefined - Angular CLI

后端 未结 13 455
再見小時候
再見小時候 2021-01-18 02:04

I installed latest Angular CLI and was trying to create a new app i am getting the below error. I uninstalled , cleaned cache , cleaned by forcing it , installed , updated

相关标签:
13条回答
  • 2021-01-18 02:51

    First of, install node.js from here, and follow the steps below.

    To install the Angular CLI:

    npm install -g @angular/cli
    

    To create project

    ng new my-project //my-project is the name of the project 
    

    Change directory to project folder

    cd my-project
    

    To run the Angular project

    ng serve
    
    0 讨论(0)
提交回复
热议问题