Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

express-batching

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-batching

A small higher order component for in-process batching and caching of API requests

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

express-batching NPM version Build Status Dependency Status Coverage StatusNPM DownloadsPatreon

A small higher order component for in-process batching and caching of API requests

Installation

$ npm install --save express-batching

Usage

const expressBatching = require('express-batching');
const app = require('express')();
const catRoutes = require('./catRoutes');

// normal
app.get('/cats', catRoutes.findAll);

// with batching
app.get('/cats', expressBatching(catRoutes.findAll));

// accepting a hash function for parameterized requests
app.get('/cats/:id', expressBatching(req => req.params.id, catRoutes.findOne));

Contributing

Contribute!

TODOs

In order of importance

  • get a cool logo
  • optimize perf
  • config param
    • cache timeout
    • max queue size
  • setter injection for alternative cache (redis)
  • moar tests

Testing

mocha --require clarify lib/index.test.js --watch

License

Apache-2.0 © blugavere

Keywords

FAQs

Package last updated on 30 Jan 2017

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc