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 trialL Haney
Front End Web Development Techdegree Student 10,263 PointsHere 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!
1 Answer
Victoria Aoka
379 PointsThank you
Dan Wall
7,852 PointsDan Wall
7,852 PointsThank you. Worked perfectly.