如何在 Visual Studio 代码中设置本地 Web 服务器

How to set local web server in Visual Studio Code

我是 VS 代码的新手,在 typescript.Just 工作 我正在尝试设置本地服务器路径以打开我的 HTML file.how 来设置它以及我尝试设置的时间我总是出错。我无法在 terminal.If 中使用此 (NPM install) 和 (NPM start) 命令 我使用此命令时出现错误。 任何代理问题?如何在 VS 代码中解决此问题?

文件夹结构:

TsDemo--folder name

.vscode
   ->launch.json
   ->tasks.json
out
    ->app.js
    ->app.js.map

app.ts
index.html 
tsconfig.json

我关注了这个link:https://blogs.msdn.microsoft.com/cdndevs/2016/01/24/visual-studio-code-and-local-web-server/ 但没有工作。 如果我使用这个命令:D:\TsDemo>NPM install

        D:\TsDemo>npm install
        npm ERR! code ETIMEDOUT
        npm ERR! errno ETIMEDOUT
        npm ERR! network request to https://registry.npmjs.org/lite-server failed, reason: connect ETIMEDOUT 10.232.192.45:8080
        npm ERR! network This is a problem related to network connectivity.
        npm ERR! network In most cases you are behind a proxy or have bad network settings.
        npm ERR! network
        npm ERR! network If you are behind a proxy, please make sure that the
        npm ERR! network 'proxy' config is set properly.  See: 'npm help config'

        npm ERR! A complete log of this run can be found in:
        npm ERR!     C:\Users\AppData\Roaming\npm-cache\_logs17-12-20T14_16_49_680Z-debug.log

如果我使用这个命令:D:\TsDemo>NPM start

        D:\TsDemo>npm start
        >TSDEMO@1.0.0 start D:\TsDemo
        > npm run lite

        npm WARN invalid config loglevel="notice"

        > TSDEMO@1.0.0 lite D:\TsDemo

        >lite-server --port 10001

        'lite-server' is not recognized as an internal or external command,
        operable program or batch file.
        npm ERR! code ELIFECYCLE
        npm ERR! errno 1
        npm ERR! TSDEMO@1.0.0 lite: `lite-server --port 10001`
        npm ERR! Exit status 1
        npm ERR!
        npm ERR! Failed at the TSDEMO@1.0.0 lite script.
        npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
        npm WARN Local package.json exists, but node_modules missing, did you mean to install?


        npm ERR! A complete log of this run can be found in:
        npm ERR!     C:\Users1732\AppData\Roaming\npm-cache\_logs17-12-20T14_07_41_636Z-debug.log
        npm ERR! code ELIFECYCLE
        npm ERR! errno 1
        npm ERR! TSDEMO@1.0.0 start: `npm run lite`
        npm ERR! Exit status 1
        npm ERR!
        npm ERR! Failed at the TSDEMO@1.0.0 start script.
        npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
        npm WARN Local package.json exists, but node_modules missing, did you mean to install?

        npm ERR! A complete log of this run can be found in:
        npm ERR!     C:\Users\AppData\Roaming\npm-cache\_logs17-12-20T14_07_41_694Z-debug.log    

只需使用 Live Server Extension。直接从 VS Code 安装它,你会没事的。然后你会在你的编辑器底部有一个 link 来启动和 运行 服务器自动并且还可以立即查看你的 HTML。

同时检查:live-server-web-extensionLive Server