npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

madagascar

v0.1.13

Published

Madagascar wraps a bulk of HTTP requests, collect the responses and sends them back as one.

Downloads

26

Readme

#Madagascar

NPM version Build Status

Madagascar wraps a bulk of HTTP requests, collect the responses and sends them back as one.

Install

$ npm install madagascar

#API

madagascar(config) in where config is an object that may contains

  • string domains.baseUrl … base URL respect to which every relative URL will be taken, e.g., "https://api.olapic.com/v1"
  • array domains.restrictTo … list of allowed domains. If it's not present, it will be allowed requests to any domain, e.g., ["api.olapic.com"]
  • object defaultHeaders … contains a set of default headers to be sent on every request to the upstream API, e.g., {"Accept": "application/json", "Link": "</>"}
  • int batchMaxSize … Specifies the maximum amount of request allowed on a single batch. Its default value is 30.

and returns an object containing:

  • function send(payload, callback)

where payload may have the following members

  • string base_url … acts in the same way as config.domains.baseUrl does.
  • object authentication … authentication object. It will be merged into the query string of every request.
  • array batch … objects corresponding to a standar HTTP request.
    • string relative_url … relative to the base_url specified by this payload or by config, e.g., '/hello'
    • string url … must be fully qualified, e.g., 'https://api.olapic.com/hello?count=2'. It supersedes the relative_url parameter.
    • string method … HTTP method like 'GET'.
    • object headers … may contain any valid HTTP header in the form: {name: value}, e.g., {'Content-type': 'application/json'}
    • string body … must be already encoded according to the Content-Type specified on the headers of the request.

and callback must be a function(response), in where

  • response would be an array of response objects, in the corresponding order to the batch received. Each of one should contain
    • int status … HTTP status code
    • object headers … response headers.
    • string body … response body as it comes from the upstream.

Usage

var madagascar = require('madagascar');

var payload = {
  base_url: 'https://api.olapic.com',
  authentication:
  {
    access_token: 'abcdef'
  }
  batch: [
    {
      url: 'https://api.photorank.me/media',
      method: 'POST',
      body: 'caption=%23madagascar&link=http%3A%2F%2Finstagram.com%2Fp%2FqMN-RWKc9U',
    },
    {
      relative_url: '/',
      headers:
      {
        'Accept': 'text/html; q=0.8'
      }
      method: 'GET',
    }
  ]
};

madagascar(payload, function(responses){
  /*
  response = [
    {
      status: 200,
      headers:
      {
        'Content-Type': 'text/javascript; charset=UTF-8'
      },
      body: '{\"id\":\"…\"}'
    },
    {
      status: 400,
      headers:
      {
        'Content-Type': 'text/javascript; charset=UTF-8'
      },
      body:'{\"error\":\"…\"}'
    },
  ];
  */
});

#Server example

var express = require('express'),
    madagascar = require('madagascar'),
    bodyParser = require('body-parser'),
    app = express(),
    gate;

app.use(bodyParser.json());

gate = madagascar({
  domains: {
    baseUrl: 'https://api.olapic.com/'
  }
});

app.post('/', function(req, res){
  gate(req.body, function(responses) {
    res.send(responses);
  });
});

app.listen(3000);
curl -d "`cat payload.json`" -H "Content-Type: application/json" http://localhost:3000/
[{"status":200,"headers":{"server":"nginx"...

License

##MIT

Copyright (c) 2014 Olapic INC

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell Software is furnished to do so, subject to the following copies of the Software, and to permit persons to whom the conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.