javascript - Getting This webpage is not available response when starting up node.js server -
i'm beginner @ node.js, , don't know i'm doing wrong when trying access server. here things wrote in cygwin start server:
1) npm install http-server -g
2) http-server
now, access server @ http://0.0.0.0:8080, isn't working; gives "this webpage not available" error. can tell me i'm doing wrong? please, don't hesitate ask more information if necessary.
start http-server -a 127.0.0.1
, try accessing http://127.0.0.1:8080
or http://localhost:8080
0.0.0.0
not default , doesn't work on windows.
Comments
Post a Comment