Getting Started
Installing OPS
$ curl https://ops.city/get.sh -sSfL | sh$ ops pkg load eyberg/node:20.5.0 -p 8083 -f -n -a hi.js -m 256var 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 running at http://127.0.0.1:8083/');$ sudo apt-get install qemu-kvm qemu-utilsVerify the OPS Installation
Last updated