po-stream

0.0.1 • Public • Published

po-stream Build Status

Streaming .po file parser.

$ npm i --save po-stream

Usage

var fs = require('fs');
var poStream = require('po-stream');
 
fs.createReadStream('file path')
  .pipe(poStream())
  .on('data', function (entry) {
    console.log(entry.toString());
  });

License

(The MIT License)

Copyright (c) 2014 Po-Ying Chen <poying.me@gmail.com>.

Readme

Keywords

none

Package Sidebar

Install

npm i po-stream

Weekly Downloads

3

Version

0.0.1

License

MIT

Last publish

Collaborators

  • poying