Skip to content

totherik/promulgate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

An npm publish stream reader.

Resources

Stars

Watchers

Forks

Packages

No packages published