Prepend text to the beginning of each line in a stream.
npm install -S prepend-transformimportptfrom'prepend-transform';import*ascpfrom'child_process';constn=cp.spawn('bash');n.stdout.pipe(pt('child stdout: ')).pipe(process.stdout);n.stderr.pipe(pt('child stderr: ')).pipe(process.stderr);