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 🙏

© 2025 – Pkg Stats / Ryan Hefner

api-signed-request

v0.1.0

Published

Signed request server/client for token-based APIs

Readme

api-signed-request

Signed request server/client for token-based APIs. Server was written for TechShaker. Client was written for everyone else.

Server

Express-based middleware for an API.

Usage

Install using npm:

$ npm install signed-request

Inside you app:

var express = require('express');
var app = express();
var signedRequest = require('api-signed-request').Server;

app.use(signedRequest({
  useMethod: true,
  useRoute: true,
  encryption: 'sha1',
  key: 'x-api-key',
  sig: 'x-api-signature',
  allowGet: false,
  onError: function (req, res) { return res.end(401, 'Unauthorized'); },
  private: function (req, res, cb) {
  	return doSomethingAsynchronous(req.header['x-api-key'], function (err, privateKey) {
  		if (err) return cb(err);
  		return cb(null, privateKey);
  	})
  }
};
}));

app.get('/resource/:resource_id', myMiddleware);

Configuration

opts.useMethod (bool)

Include the HTTP request method in the payload. Defaults to true.

opts.useRoute (bool)

Include the HTTP request url in the payload. Defaults to true.

opts.encryption (string)

Encryption algorithm used for the payload. Uses the crypto module's encryption algorithms. Defaults to 'sha1'.

opts.key (string)

The header key containing the API Key. Defaults to "x-api-key".

opts.sig (string)

The header key containing the request signature. Defaults to "x-api-signature".

opts.allowGet (bool)

Allow non-signed requests to use GET methods. Defaults to false.

opts.onError (function)

Error middleware called when a request can't be authentified. Arguments sent are the originals req, res and next, allowing you to continue processing the request in another way instead of just finishing here. Defaults to standard HTTP "Unauthorized" message and status code.

opts.private (function)

Middleware function to get the private key associated to this request. This middleware is passed the originals req and res with a callback function (err, privateKey). If err is returned, it is passed to the next middleware. The privateKey argument is expected to be the privateKey used to verify this request's payload.

Client

Usage

var SignedRequest = require('api-signed-request').Client;
var foo = new SignedRequest(PRIVATE_KEY, 'sha1');
var payload = foo.update({ method: 'GET', route: '/user/tobi'}).digest();

Configuration

SignedRequest (private_key {string} [, encryption {string}])

Constructor function. Argument private_key is the key that'll be used to create your signature. Can be chained. Encryption defaults to 'sha1'.

SignedRequest.update(payload {object})

Adds data to the current SignedRequest object's payload. Can be chained.

SignedRequest.digest()

Returns the current SignedRequest object's signed payload. Can't be chained.