line-wrap

1.0.0 • Public • Published

line-wrap

writable stream that reformats text and wraps lines to a specific line width (default 80).

also available as a command-line tool

NPM

installation

# server/client
npm install --save line-wrap
 
CLI
npm install line-wrap -g

CLI usage

$ line-wrap
Usage: line-wrap <file> [-w 80] [--width=80] [-]
 
$ cat hello.txt
hello world
 
$ line-wrap hello.txt -w 2
he
ll
wo
rl
d

JS usage

var lineWrap = require('line-wrap')
var wrapStream = lineWrap({width: 80}) // opts are optional, default is width: 80
 
process.stdin.pipe(wrapStream).pipe(process.stdout)

Dependencies (5)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i line-wrap

    Weekly Downloads

    1

    Version

    1.0.0

    License

    BSD

    Last publish

    Collaborators

    • maxogden
    • fardog