Tanzeel
Tanzeel

Reputation: 4998

Unable to run Angular project [Angular 6]

I have tried this solution. But it is not working for me. I've cloned a project from gitlab and trying to run the same. First see the output of my ng version command. enter image description here. I want to run an angular 6 project available on gitlab. You can clone it from here. I extracted the project and tried npm install. To which I'm getting the below errors: <code>npm install</code> screenshot. However I still tried ng serve. ng serve screenshot I know It will definitely fail now. Please tell me whether something is wrong with the project or I am doing some mistake. Even with run as admin cmd prompt i'm getting this: enter image description here

Upvotes: 0

Views: 194

Answers (1)

Shrutika Patil
Shrutika Patil

Reputation: 565

I have taken the clone and tried running ng serve, I got the same issue. However, I am able to run the project by changing rxjs version. Try using following command :

npm install [email protected] --save

Reference: https://github.com/ReactiveX/rxjs/issues/4540

Upvotes: 1

Related Questions