VSCode运行JS、Html文件

配置node.js,并在launch.json中设置配置如下

{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "launch",
            "name": "启动程序",
            "program": "${workspaceFolder}/demo.js",
            "preLaunchTask": "",
            "cwd": "${workspaceFolder}",
            "outFiles": [
                "${workspaceFolder/lib/*.js}"
            ]
        }
    ]
}

运行html,则需要下载插件 view in Browser。然后选择html文件,右键选择view in Borwser,在浏览器中运行

你可能感兴趣的:(VSCode运行JS、Html文件)