2.1.3 • Published 8 months ago

unflare v2.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

Unflare (v2)

Just another express-inspired web framework for serverless like cloudflare's workers.

npm bundle size npm version node-current

import { Unflare } from 'unflare';

const app = new Unflare();

app.get('/', () => {
  const { res } = app;
  res.send('Hello World!');
});

export default app;

Installation

Requires at least Node v18, but preferably Node v19 or latest.

This module is intended to be use for cloudflare's workers to help manage routing and handling of request. To avoid issues, install this after creating your wrangler/workers project.

Installation is done using the npm install command:

$ npm install unflare

Features

  • specifically for cloudflare's workers.
  • write like you would with express.
  • treeshakeable and ES6 compliant.
  • scoped and recursive handling of middlewares, routers, routes and error handlers.
  • auto extraction of queries, params, cookies and body of request.

GUIDES

2.1.2

8 months ago

2.1.1

9 months ago

2.1.3

8 months ago

2.0.4

9 months ago

2.1.0

9 months ago

2.0.2

1 year ago

2.0.1

1 year ago

1.3.1

1 year ago

1.3.0

1 year ago

1.2.3

1 year ago

1.2.2

1 year ago

1.2.1

1 year ago

1.2.0

1 year ago

1.1.2

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.1

1 year ago

1.0.1-3

1 year ago

1.0.1-2

1 year ago

1.0.1-1

1 year ago