0.0.1019 • Published 5 years ago

prepend-transform v0.0.1019

Weekly downloads
1,012
License
MIT
Repository
github
Last release
5 years ago

Prepend-Transform

Installation

npm install -S prepend-transform

Usage

import pt from 'prepend-transform';
import * as cp from 'child_process';

const n = cp.spawn('bash');

n.stdout.pipe(pt('child stdout: ')).pipe(process.stdout);
n.stderr.pipe(pt('child stderr: ')).pipe(process.stderr);