这是我的问题。我从来没有在不使用 express 的情况下在 node 中写过东西,所以我发现很难用基本的 API 创建一个服务器。
基本上我在网上找到的是这样的:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
但是我看不到如何实现 /index.html 和 /getData。这段代码将在树莓派上运行,这就是我不应该使用库的原因。基本上我没有太多空间。
非常感谢,h