Socket
Book a DemoInstallSign in
Socket

fax

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fax

Middleware stack for the client.

latest
Source
npmnpm
Version
1.3.8
Version published
Maintainers
1
Created
Source

fax

NPM version build status Test coverage Downloads

Middleware stack for the client leveraging ES6 generators. Based off the brilliant work done in Koa.

Having a middleware stack in the client is not as strange as it might first seem. Like on the server there's a need to perform multiple layers of processing before a request is made. With Fax you can now just as easily compose your complete stack in the browser as you would on the server, building on the familiar API Koa provides.

In order to run fax in today's browsers you need to provide a setimmediate shim. It's recommended to use koaify and browserify to enable ES6 generators and require().

Installation

npm install fax

Usage

var logger = require('fax-logger');
var fax = require('fax');
var app = fax();

app.use(logger());
app.use(function *(next) {
  if ('/hi' == this.url) {
    this.body = 'Hello Server';
  }
  yield next;
});

app.send({
  method: 'GET',
  url: '/hi'
});

License

MIT

Keywords

middleware

FAQs

Package last updated on 03 Dec 2014

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