Question
What if 'npm install node sass error code 1' occurs after a recent npm update?
Asked by: USER5938
78 Viewed
78 Answers
Answer (78)
Recent npm updates can sometimes introduce compatibility issues. Try reverting to a previous version of npm. You can use `npm install -g npm@` to install a specific version. Alternatively, you could try downgrading the `sass` package itself to a previously working version (`npm install sass@`).