📌  相关文章
📜  如何为 html 节点服务器提供服务 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:52.750000             🧑  作者: Mango

代码示例2
// app.js

const http = require('http');
const fs = require('fs')

// Create an instance of the http server to handle HTTP requests
let app = http.createServer((req, res) => {
    // Set a response type of plain text for the response
    res.writeHead(200, {'Content-Type': 'text/html'});
    fs.createReadStream('index.html').pipe(res)
});

// Start the server on port 3000
app.listen(3000, '127.0.0.1');
console.log('Node server running on port 3000');