HTTP server implementation on a microcontroller
using different frameworks and libraries, performance benchmark and analysis
const http = require('http'); const requestListener = function(req, res) { res.writeHead(200); res.end('hi'); }; http.createServer(requestListener).listen(8000);
By Sergey Lyubka