Can't get index.html to show with Express in Nodejs

后端 未结 2 1614
情歌与酒
情歌与酒 2021-02-09 00:23

I\'m trying to run my first express app, but can\'t seem to get my webpage to show. I have the following code:

var fs = require(\"fs\");
var config = JSON.parse         


        
2条回答
  •  别那么骄傲
    2021-02-09 01:17

    I had this issue .... after a lot of trouble I find that if you run two workspaces or project at t time then it will create this scenario. so you might open only a workspace at a time and not just file ... open the hole folder then run the specific file.make the following change in your VS code setting.

    setup the settings

    For 64bit system.

    {
        "liveServer.settings.AdvanceCustomBrowserCmdLine: ": "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe",
        "liveServer.settings.NoBrowser": false
    }
    

    For 32bit system.

    {
        "liveServer.settings.AdvanceCustomBrowserCmdLine: ": "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",
        "liveServer.settings.NoBrowser": false
    }
    

提交回复
热议问题