ops pkg load eyberg/node:20.5.0 -p 8083 \
-a hi.js
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {
'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(8083, "0.0.0.0");
console.log('Server at http://127.0.0.1:8083/');