npm/npm-hook-receiver

Name: npm-hook-receiver

Owner: npm

Description: sample code for receiving package hooks from the npm registry

Created: 2016-05-10 00:25:40.0

Updated: 2018-04-06 09:12:32.0

Pushed: 2017-07-31 22:25:18.0

Homepage:

Size: 26

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

npm-hook-receiver

Sample code showing you how to receive a package hook from the npm registry, verify its signature, and handle its payload. This module makes a restify server that you configure to receive hook payloads at whatever path you like. The server emits events when notifications arrive. Listen for the events to do something interesting! For example, it's easy to write a Slack bot that echoes events to a Slack channel.

Usage
makeReceiver = require('npm-hook-receiver');
server = makeReceiver({
secret: 'this-is-a-shared-secret',
mount: '/hook'


er.on('hook', function(message)

console.log(`got ${message.event} type ${message.type} on ${message.name}`);
console.log(`object is in ${message.payload}`);


er.on('package:star', function(message)

console.log(`package ${message.name} was starred by ${message.sender}!`);


er.listen(8080, function()

console.log('Ready to receive hooks!');

how about you try and remix on glitch

https://glitch.com/edit/#!/possible-pipe

Configuration

This example hook receiver exports a single function that takes a config object and returns a restify server. The config object must have two required fields plus any configuration you'd like to pass along to restify's createServer() function. The two required fields are:

You must call listen() on the restify server yourself. The server object is an event emitter. Attach event listeners to it to act when hooks are fired.

Events

See the npm hooks API documentation for the full list of events.

License

ISC


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.