A modern runtime for JavaScript and TypeScript.
ops pkg load eyberg/deno:1.24.3 -p 8000 -c config.json -a hi.ts
config.json:
{
"Files": ["hi.ts"]
}
hi.ts:
const listener = Deno.listen({ port: 8000 });
console.log("http://localhost:8000/");
for await (const conn of listener) {
serve(conn);
}
async function serve(conn: Deno.Conn) {
for await (const { respondWith } of Deno.serveHttp(conn)) {
respondWith(new Response("Hello world"));
}
}
NanoVMs has a range of support plans to ensure success.
You can create a free account for open source packages here.