Skip to main content

iterable_file_server v0.1.4

Serve items from AsyncIterable<F>, where F = Blob & { name: string }

Usage

import { serve } from "https://deno.land/x/iterable_file_server@0.1.4/mod.ts";

async function* generateItems() {
  yield Object.assign(new Blob(["foo"]), { name: "foo.html" });
  yield Object.assign(new Blob(["bar"]), { name: "foo/bar.html" });
  yield Object.assign(new Blob(["baz"]), { name: "foo/bar/baz.html" });
  // ...
}

const server = serve(generateItems(), { port: 3000 });
// This serves the follwoing paths:
// - http://localhost:3000/foo.html
// - http://localhost:3000/foo/bar.html
// - http://localhost:3000/foo/bar/baz.html
// This also serves the debug page:
// - http://localhost:3000/__debug__

// ...

// When you want to stop the server.
server.close();

This depends on native http bindings, so you need --unstable flag to use this module.

License

MIT