开始之前,需要:

    • 正确安装和配置 VS Code (以下简称 code)
    • 正确安装和配置 node.js 16

    打开 PowerShell ,(创建并)进入工作目录。
    命令行或者手动打开 code 并编写 hello-world.js 文件。

    1. code hello-world.js

    在 hello-world.js 中输入以下内容

    1. const http = require("http");
    2. const hostname = '127.0.0.1';
    3. const port = 3000;
    4. const server = http.createServer((req,res) => {
    5. res.statusCode = 200;
    6. res.setHeader("Content-Type","text/plain");
    7. res.end("Hello,World\n");
    8. });
    9. // 注意是反引号不是单引号
    10. server.listen(port, hostname, () => {
    11. console.log(`Server running at http://${hostname}:${port}/`);
    12. });

    CTRL + S 保存文件。

    回到 PowerShell , 输入 node hello-world.js 并回车(此时工作目录应当与之前一致)。
    应当看到如下图所示的内容:
    image.png

    现在,打开任何首选的网络浏览器并访问 http://127.0.0.1:3000