npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

promulgate

1.0.6

@totherik

npmSnykSocket
Downloads:26
$ npm install promulgate
DailyWeeklyMonthlyYearly

promulgate

A readable stream that returns npm modules as they're published. Heavily inspired by npm-publish-stream.

Basic Example

import Through from 'through2';
import Promulgate from 'promulgate';

let read = Promulgate.createReadStream(/*host, interval*/);

let write = Through.obj((data, _, done) => {
	console.log(data.id);
	done();
};

read.pipe(write);