Home > Mobile >  node.js express won't open in browser
node.js express won't open in browser

Time:09-03

I can open a browser page with HTML/CSS & it works, but when I type in the code for node.js then click on Go Live, the files show up but no message or any network traffic. I updated everything. I even copied & pasted the code from Node.js for the express server but it won't load to the browser. this is all that shows up.

Your help will be greatly appreciated!

CodePudding user response:

Go live (with VSCode Live Server Extension) and running your server with Node.js are two different things. Check Node.js getting started documentation (Link)

  • Related