sunder
TypeScript icon, indicating that this package has built-in type declarations

0.10.1 • Public • Published

🌄 Sunder

CI License NPM badge Documentation

Sunder allows you to quickly build websites and APIs in a modern async structure on Cloudflare Workers. Think of Sunder as Express or Koa for serverless.

Sunder is

  • Fast
  • Small
  • Easy to test
  • Typesafe

The easiest way to get started with Sunder on Cloudflare Workers is to use the template project.

Installation

npm i --save sunder
# or
yarn add sunder

Read the documentation here to get started.

Example

import {Sunder, Router, Context} from "sunder";

const app = new Sunder();
const router = new Router();

// Example route with a named parameter
router.get("/hello/:username", ({response, params}) => {
    response.body = `Hello ${params.username}`;
});
app.use(router.middleware);

export default {
    fetch(request, ctx, env) {
        return app.fetch(request, ctx, env);
    }
};

Highlight feature: strict route parameters

Strict routes gif

Inspiration

The Sunder framework was inspired by Elixir's plug, Node's Koa framework, tiny-request-router and cfworker's web package.

Sunder is only a few hundred lines of code. It has little magic and doesn't impose too much structure.

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i sunder

Weekly Downloads

114

Version

0.10.1

License

MIT

Unpacked Size

86.3 kB

Total Files

47

Last publish

Collaborators

  • gzuidhof