Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Sheila Anguiano
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Sheila Anguiano
Full Stack JavaScript Techdegree Graduate 35,239 Points

React Components - Scoreboard Project Installation Dec 2020

I followed the steps to start running the project and ran into several problems which took me a while to solve, which is why I hope this information helps someone starting this course, just notice the following:

I'm using VSC v. 1.51.1 on a Mac running OS Catalina 10.157

  1. Make sure that npm and node are up to date: npm v 6.14.8 node v.14.15.1

  2. If you run npm install and then 'npm start' and start getting the following error TypeError: fsevents is not a constructor at createFSEventsInstance

You need to delete the node_modules you just installed and your package-lock.json using the command line in VSC like this:

rm -rf package-lock.json node_modules

Then again run npm install followed by npm start

If for some reason you cannot open it like this, paste the error on Google, must of the time will redirect to Stack Overflow and buried among the answers will be something that soles the problem. Good luck!

1 Answer