T1ckbase
write test
d6951de
raw
history blame
174 Bytes
Deno.writeTextFileSync('test.txt', 'hello world');
Deno.serve({ port: 7860 }, (_req) => {
const text = Deno.readTextFileSync('test.txt');
return new Response(text);
});