1
0
Fork 0
mirror of https://github.com/imjasonh/deno-image synced 2026-07-08 09:05:41 +00:00
deno-image/example.js
2021-08-24 09:59:16 -04:00

14 lines
413 B
JavaScript

const listener = Deno.listen({ port: 8000 });
console.log("http://localhost:8000/");
for await (const conn of listener) {
(async () => {
const requests = Deno.serveHttp(conn);
for await (const { respondWith } of requests) {
respondWith(new Response("Hello world"));
}
})();
}
import { assertEquals } from "https://deno.land/std@0.106.0/testing/asserts.ts";
assertEquals("hello", "hello");