You can try Node.js by using your Port Allocation on the The MetaArray to run your own Node.js server. What follows is a bare-bones ‘Hello, World’ example tailored for the metaarray:
~/projects/nodejstest
app.js
const http = require('http'); //const hostname = '*put your mkhomepg-selected meta-array domain name here, remove the // at the beginning and delete next line*'; const hostname = 'username.sdf.org'; //const port = *replace this with your UID as port number, uncomment this line, then delete the line below*; const port = 8388; const server = http.createServer((req, res) => { res.statusCode = 200; res.setHeader('Content-Type', 'text/plain'); res.end('Hello World, this is node'); }); server.listen(port, hostname, () => { console.log(`Server running at http://${hostname}:${port}/`); });
node app.js
http://me.sdf.org:30099
ctl-c