File size: 174 Bytes
d6951de
 
 
 
 
 
1
2
3
4
5
6
7
Deno.writeTextFileSync('test.txt', 'hello world');

Deno.serve({ port: 7860 }, (_req) => {
  const text = Deno.readTextFileSync('test.txt');
  return new Response(text);
});