Skip to content

ArtskydJ/strings-stream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

strings-stream

A streaming unix strings port

Build Status

example

var stringsStream = require('strings-stream')

process.stdin
	.pipe(stringsStream())
	.pipe(process.stdout)

api

var stringsStream = require('strings-stream')

var stream = stringsStream([opts])

  • opts is an optional object of options
    • minLength is the minimum length a string has to be to make it through. (Like the -n/--bytes option in strings.) Default: 4. (Same as strings.)
  • Returns stream, which is a through stream

install

With npm do:

npm install strings-stream

license

MIT

About

➰ A streaming unix `strings` port

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published