Socket
Book a DemoInstallSign in
Socket

batch-request-patch

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

batch-request-patch

Batch Request - Utility library to enable a server to handle batch requests and typescript friendly

latest
Source
npmnpm
Version
1.10.1
Version published
Maintainers
1
Created
Source

Batch Request Patch

Introduction

Batch Request is lightweight connect/express middleware for Node.js which allows clients to send multiple requests to a server running Node.js in batch. This library is derived from batch request. Due to project needs, I need to further process data after batch response. Therefore I patched it to fulfill following needs:

  • I need it to have a typescript interface for typescript support.
  • I need to further process data such as sign it for security purpose, hash it to ensure data integrity as well as help for my own caching infrastructure layer.

Looking for the Koa version of this module?

Prerequisite

Before you use this library, please keep in mind that you have used body-parser as one of your middlewares (express.bodyParser() or express.json() is needed). The official batch request documentation is somehow did not document it. However, it is mentioned in its source code batch-request/lib/batch-request.js line 48.

If you desire to use Typescript, just type tsd link in your command.

What Now

You can do as followings:

    var batch = require('batch-request-patch')();

    // Javascript/Typescript way. Simple case.
    app.post('/batch', batch);

Optionally included 'batch.validate' middleware to check the validity of your batch request, as well as further process return data as you need:

    // Include the batch.validate middleware before batch middleware
    app.post('/batch', batch.validate, batch, (req,res)=>{
        // proxy return data will be passed into the req.batch object
        console.log(req.batch);
    });
    
    //Typescript way. Recommended to write in this way:
    batchRouter.post('/batch', batch.validate, batch, (req: IBatchRequest, res: express.Response)=> {
        //do whatever you want wih req.batch
        res.json(req.batch);
    });

Keywords

batch

FAQs

Package last updated on 29 Aug 2016

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.