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 React Basics (2018) First Steps in React Add React to a Project

Here is what I did to set up my server step by step (using Node not Python)

Here is the video I referenced: https://www.youtube.com/watch?v=vnPemSnnJYY

On the command line:
$ npm install http-server -g
$ http-server "C:\Users\mizV\Desktop\scoreboard_final"
(This is what showed up in my terminal:
Available on:
http://192.168.3.32
http://192.168.4.32
Hit CTRL-C to stop the server
)
Port 8080 is the default port used, unless you specify otherwise. 
Inside the browser, I typed:
192.168.3.32:8080

The page was able to display in the browser!

Thank you. Worked perfectly.

1 Answer

Thank you