GitXplorerGitXplorer
m

csv-write-stream

public
204 stars
37 forks
17 issues

Commits

List of commits on branch master.
Verified
c817170d6b7812eb552da20fcbd5cb3a4012b9d1

2.0.0

mmax-mapper committed 9 years ago
Verified
6ef6922d38f7799d5af002f8f83ab45bdf37047b

add slang to collaborators

mmax-mapper committed 9 years ago
Unverified
f113785d356f2de7d8c6f3c1213a4217c32eb78b

Merge pull request #22 from slang800/master

mmaxogden committed 9 years ago
Unverified
e94214d390337ed9a5986dbc0670f022795dada9

clean up readme with tidy-markdown

nnotslang committed 9 years ago
Unverified
9c1c47e6a1f65dca72648f676c5020bbbdedbf0f

canonicalize package.json with fixpack

nnotslang committed 9 years ago
Unverified
3d6f0b8664ec07828b0d10fd41c24082b4c10548

rename CLI tool to "csv-write" & add to readme

nnotslang committed 9 years ago

README

The README file for this repository.

csv-write-stream

A CSV encoder stream that produces properly escaped CSVs.

NPM

browser support

A through stream. Write arrays of strings (or JS objects) and you will receive a properly escaped CSV stream out the other end.

usage

var writer = csvWriter([options])

var csvWriter = require('csv-write-stream')
var writer = csvWriter()

writer is a duplex stream -- you can pipe data to it and it will emit a string for each line of the CSV

default options

{
  separator: ',',
  newline: '\n',
  headers: undefined,
  sendHeaders: true
}

headers can be an array of strings to use as the header row. if you don't specify a header row the keys of the first row written to the stream will be used as the header row IF the first row is an object (see the test suite for more details). if the sendHeaders option is set to false, the headers will be used for ordering the data but will never be written to the stream.

example of auto headers:

var writer = csvWriter()
writer.pipe(fs.createWriteStream('out.csv'))
writer.write({hello: "world", foo: "bar", baz: "taco"})
writer.end()

// produces: hello,foo,baz\nworld,bar,taco\n

example of specifying headers:

var writer = csvWriter({ headers: ["hello", "foo"]})
writer.pipe(fs.createWriteStream('out.csv'))
writer.write(['world', 'bar'])
writer.end()

// produces: hello,foo\nworld,bar\n

example of not sending headers:

var writer = csvWriter({sendHeaders: false})
writer.pipe(fs.createWriteStream('out.csv'))
writer.write({hello: "world", foo: "bar", baz: "taco"})
writer.end()

// produces: world,bar,taco\n

see the test suite for more examples

run the test suite

$ npm install
$ npm test

cli usage

This module also includes a CLI, which you can pipe ndjson to stdin and it will print csv on stdout. You can install it with npm install -g csv-write-stream.

$ csv-write --help
usage: csv-write [-h] [-v] [--separator SEPARATOR] [--newline NEWLINE]
                 [--headers HEADERS [HEADERS ...]] [--no-send-headers]


A CSV encoder stream that produces properly escaped CSVs. JSON is read from
STDIN, formatted to CSV, and written to STDOUT.

Optional arguments:
  -h, --help            Show this help message and exit.
  -v, --version         Show program's version number and exit.
  --separator SEPARATOR
                        The separator character to use. Defaults to ','.
  --newline NEWLINE     The newline character to use. Defaults to $'\n'.
  --headers HEADERS [HEADERS ...]
                        The list of headers to use. If omitted, the keys of
                        the first row written to STDIN will be used
  --no-send-headers     Don't print the header row.
$ cat example.ndjson | csv-write > example.csv