1.0.6 • Published 9 years ago

promulgate v1.0.6

Weekly downloads
-
License
ISC
Repository
-
Last release
9 years ago

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);
1.0.6

9 years ago

1.0.5

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago