Socket
Book a DemoInstallSign in
Socket

promulgate

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

promulgate

An npm publish stream.

latest
npmnpm
Version
1.0.6
Version published
Maintainers
1
Created
Source

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

FAQs

Package last updated on 09 Mar 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts