word-filter
v0.1.2
Published
Count the number of characters in a text stream
Downloads
6
Readme
word-filter
Extract words from the input stream into another text stream.
Command line
npm i -g word-filter
wf -h
wf -n example/text
cat example/text | wf -n
API
const WordFilter = require('word-filter')
const fs = require('fs')
fs.createReadStream(__dirname + '/text')
.pipe(WordFilter.ascii())
.on('data', word => console.log(word))
Input
Don't repeat yourself.
笑相遇,似觉琼枝玉树相倚,暖日明霞光烂。
Do one thing and do it well.
在Node stream暴露的接口中,Readable和Writable分别需要实现_read和_write方法。
Output
Don
t
repeat
yourself
Do
one
thing
and
do
it
well
Node
stream
Readable
Writable
_read
_write