New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

unflare

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unflare

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

latest
Source
npmnpm
Version
2.1.3
Version published
Maintainers
1
Created
Source

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

Keywords

unflare

FAQs

Package last updated on 18 Sep 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts