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

express-metering

v0.1.0

Published

simple middleware to meter api requests

Downloads

2

Readme

express-metering

Coverage Status

simple express middleware to meter api requests.

Installation

This repository is available in npm repository. It needs node v4 or higher.

$ npm install express-metering

Usecase

This package is intended for a API service which servers single or multiple clients using express framework. It will meter(or measure)the requests made from a remote address per client_id per hour. express-metering will have a request throttling component very soon.

  • Requests throttling per client per hour for overall health of the service. (future planned release)
  • To identify malicious request origins which bombarding your service with requests.
  • To identify and isolate key restful resources which are accessed more than others.

Usage

Each API request is stored in bucket uniquely identified by.

  • ip- remote address
  • clientId - An application probably serve multiple clients
  • utcHour

To use this package, simply pass the middleware in the express middleware chain before the routes.

var app = express();
var metering = require('express-metering');

// default configuration 
app.use( metering.meter() );

The middleware attaches the count/hour/client to the req object to be accessed down the middleware chain. To access the value downstream:

console.log(req.meter.count); // contains an Integer count of number of requests for the client in the last utcHour.

To use other stores instead of default memoryStore, scroll down to see Stores section.

Options

name | Default | description ------------ | ------------- | ------------- proxy | false | express server behind proxy, true remote address will be found in header ( default header : x-forwarded-for) proxyForwardedHeader | x-forwarded-for | header name set by proxy server containing true client remote address store | memoryStore | Store used to store api request counts. Default store keeps data in memory. clientIdPath | "client.id" | The nested path in req object where client ID where the request originated. Each API request is stored against a clientID.

Stores

Stores persist the request counts against each remote address(ip)/ hour. Currently this package supports :

  • memoryStore
  var app = express();
  var expressMetering = require('express-metering');
  app.use( expressMetering.meter() );
  • mongoStore MongoStore persists data and protects metering info against server crashes. It unfortunately adds 1 DB access call which in turn adds ~100ms to your API call latency.
  var app = express();
  var expressMetering = require('express-metering');
  var store = new expressMetering.mongoStore({
    uri : "mongodb://username:password@mongo_server_ip/db_name"
  });
  app.use( expressMetering.meter({ store: store }) );
  • redisStore
  var app = express();
  var expressMetering = require('express-metering');
  var store = new expressMetering.redisStore({
    host : "redis_url",
    port : redis_port || 6379
  });
  app.use( expressMetering.meter({ store: store }) );

Support for the following stores is planned for near future releasese:

  • Memcached
  • Mysql