@hattip/bundler-deno
TypeScript icon, indicating that this package has built-in type declarations

0.0.48 • Public • Published

@hattip/bundler-deno

Hattip bundler for Deno. It uses esbuild behind the scenes.

CLI

hattip-deno <input> <output>

Bundle the Hattip app in <input> into <output> as a Deno module.

Options:
  -h, --help     Display this message
  -v, --version  Display version number

The input should be a Deno module similar to the following:

import { createRequestHandler } from "@hattip/adapter-deno";
import handler from "./handler.js";

Deno.serve(createRequestHandler(handler), { port: 3000 });

If you want serve static files too, you can use the serveDir function. Assuming your static files are in the public directory, you can use the following:

import { serve, serveDir, createRequestHandler } from "@hattip/adapter-deno";
import hattipHandler from "./handler.js";

const handler = createRequestHandler(hattipHandler);

serve(
  async (request, connInfo) => {
    const staticResponse = await serveDir(request, { fsRoot: "./public" });

    if (staticResponse.status !== 404) {
      return staticResponse;
    }

    return handler(request, connInfo);
  },
  {
    port: 3000,
  },
);

The output is a Deno module that can be run with deno run or deployed to Deno Deploy.

JavaScript API

🚧 TODO 🚧

Refer to the TypeScript for the time being.

Readme

Keywords

none

Package Sidebar

Install

npm i @hattip/bundler-deno

Weekly Downloads

69

Version

0.0.48

License

MIT

Unpacked Size

8.67 kB

Total Files

16

Last publish

Collaborators

  • cyco130