This is minimal web server made in Node which runs WebTasks.
Clone the repository and run
npm i
node start.js
This server has no UI, but you can use its API.
For example, with the following code you can run the hello world in the server which will use the query parameter who to state the person's name.
curl 'http://127.0.0.1:3001/run?who=my%20dear%20friend' -H 'Content-Type: text/plain;charset=UTF-8' --data-binary 'return function(ctx, cb) { cb(null, {message: "Hello " + ctx.who}); }'