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 🙏

© 2026 – Pkg Stats / Ryan Hefner

github-push-receive

v0.2.1

Published

issue a `git push` in response to a github post-receive hook payload

Readme

github-push-receive

Issue a git push in response to a github post-receive hook payload.

example

First whip up an http server to listen for the github payloads:

var pushReceive = require('github-push-receive');
var http = require('http');

var server = http.createServer(function (req, res) {
    if (req.url.split('/')[1] === 'hook') {
        req.pipe(pushReceive('http://localhost:8051')).pipe(res);
    }
    else res.end('beep boop\n');
});
server.listen(8050);

The github payloads received by this server will be forwarded to the git server running on http://localhost:8051. You can use whichever protocol you like here since github-push-receive just shells out to git.

Just configure your github repo in the admin -> hooks part of the UI to set your server uri as a webhook endpoint.

Here's an http-based git server based on pushover you could use as a git target:

var pushover = require('pushover');
var repos = pushover('/tmp/repos');

repos.on('push', function (push) {
    console.log(
        'pushed to '
        + push.repo + '/' + push.commit
        + ' (' + push.branch + ')'
    );
    push.accept();
});

var http = require('http');
var server = http.createServer(function (req, res) {
    repos.handle(req, res);
});
server.listen(8051);

When you push code to the github repo, the git target will get pushed to.

methods

var pushReceive = require('github-push-receive')

pushReceive(target, opts={})

Return a duplex response-stream that you can pipe http request objects into and optionally pipe into http response objects.

The git payloads received as POSTS will be cloned and pushed to target.

opts.payloadMap(payload, cb) can be a function that takes a payload and transforms it asynchronously, calling cb(payload) with the result.

install

npm install github-push-receive

license

MIT