Skip to content

Instantly share code, notes, and snippets.

@htor
Created June 20, 2018 12:58
Show Gist options
  • Save htor/5802b54dd9187515f04bb2aa35f17ee4 to your computer and use it in GitHub Desktop.
Save htor/5802b54dd9187515f04bb2aa35f17ee4 to your computer and use it in GitHub Desktop.
node transform stream
const { Transform } = require('stream')
const ts = Transform({ decodeStrings: false })
ts._write = (chunk, enc, next) => {
ts.push(chunk.toUpperCase())
next()
}
process.stdin.setEncoding('utf8')
process.stdin.pipe(ts).pipe(process.stdout)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment