PatrickJS / NG6-starter

:ng: An AngularJS Starter repo for AngularJS + ES6 + Webpack
https://angularclass.github.io/NG6-starter
Apache License 2.0
1.91k stars 1.35k forks source link

Cannot install node-sass dependency #253

Open nickelaos opened 4 years ago

nickelaos commented 4 years ago

I run "npm install", and getting error: node-sass dependency cannot be installed. Here is the full error log: 1 2 3 4 Also, I am getting "Failed to load external module @babel/register" error when trying to run "npm start": 8 9 Please, advice.

gauravtikekar commented 4 years ago

Your node version?

Try running npm install on node 8.x

if you are running it on node 10.x and above then add natives to your package.json OR do npm install natives --save

nickelaos commented 4 years ago

Thank you.