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

multifetch

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multifetch

Express middleware for performing internal batch requests

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
74
increased by32.14%
Maintainers
1
Weekly downloads
 
Created
Source

multifetch

Express middleware for performing internal batch GET requests. It allows the client to send a single HTTP request, which in turn can fetch multiple JSON resources in the app, without performing any further requests.

Developed and tested with node 0.10.

Usage

It can be used without any configuration.

var multifetch = require('multifetch');
var express = require('express');

var app = express();

app.get('/api/multifetch', multifetch());

app.get('/api/user', function(request, response) {
	response.json({
		name: 'user_1',
		associates: ['user_2', 'user_3']
	});
});

app.listen(8080);

Performing a GET request to /api/multifetch?user=/api/user, will return the user and some meta information. The query parameter should have a resource name as key and the relative path as value. The path can have its own query, as long it's encoded correctly.

// Response JSON object
{
	user: {
		statusCode: 200,							// Response code returned by the user route
		headers: {									// All response headers
			'content-type': 'application/json',
			...
		},
		body: {										// The actual json body
			name: 'user_1',
			associates: ['user_2', 'user_3']
		}
	},
	_error: false									// _error will be true if one of the requests failed
}

This way we can fetch multiple resources, by adding them to the query. If we had more routes defined, it would be possible to do.

GET /api/multifetch?user=/api/user&albums=/api/users/user_1/albums&files=/api/files

And the response will contain all the resources as described above.

{
	user: {
		statusCode: 200,
		headers: { ... },
		body: { ... }
	},
	albums: {
		statusCode: 200,
		headers: { ... },
		body: [ ... ]
	},
	files: {
		statusCode: 200,
		headers: { ... },
		body: [ ... ]
	},
	_error: false
}

We don't perform any additional HTTP requests, instead express' internal routing is used to get the resources and send them back to client. The JSON is streamed to client one requests at the time.

It is also possible to configure multifetch to ignore some of the query parameters, or call a provided callback function before performing any internal routing, which makes it possible to set any required headers on the internal request, e.g. api access tokens (the cookie header is set by default).

// Ignore access_token and token in the query
app.get('/api/multifetch', multifetch({ ignore: ['access_token', 'token'] }));

// Callback function run before each internal request.
// The serverRequest argument, is the original request to multifetch,
// while internalRequest is the fake request generated to get the actual resource.
app.get('/api/multifetch', multifetch(function(serverRequset, internalRequest, next) {
	if(serverRequest.hasAccess) {
		// Calling next with a truthy value, skips this internal request.
		return next(true);
	}

	// Copy token
	internRequest.headers.token = serverRequest.headers.token || serverRequest.query.token;
	next();
}));

If request.body is available and is a JSON object, resources will also be included from there (body object with resource names as keys, and paths as values). This can de bone by using a post route with the bodyParse middleware.

Requesting non JSON resources, where content-type doesn't contain json, returns null as body.

Passing headers: false as an option, excludes statusCode and headers from the response, only the resource content is returned (the _error property is still available).

app.get('/api/multifetch', multifetch({ headers: false }));

Response with content only.

{
	user: {
		name: 'user_1',
		associates: ['user_2', 'user_3']
	},
	_error: false
}

FAQs

Package last updated on 30 Dec 2013

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