0.1.4 • Published 4 years ago

mime-type-stream v0.1.4

Weekly downloads
41
License
MIT
Repository
github
Last release
4 years ago

Streaming parser + serializer for various mime-types

This is mainly a meta package compiling various parsers and serializers to work with a stream of JSON objects.

Support the following mime types :

Usage

Install with npm :

npm install --save mime-type-stream
const mimeTypeStream = require('mime-type-stream')
const fs = require('fs')

fs.createReadStream('/path/to/file.ndjson')
  .pipe(mimeTypeStream('application/x-ndjson').parser())
  // Manipulate a stream of JSON objects here
  .pipe(mimeTypeStream('text/csv').serializer())
  .pipe(fs.createWriteStream('/path/to/file.csv'))