All Projects → leizongmin → Node Lei Stream

leizongmin / Node Lei Stream

Licence: mit
Read/Write stream line by line 按行读写流

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Node Lei Stream

Iter
Simple iterator abstract datatype, intended to iterate efficiently on collections while performing some transformations.
Stars: ✭ 71 (-24.47%)
Mutual labels:  stream
Optbinning
Optimal binning: monotonic binning with constraints. Support batch & stream optimal binning
Stars: ✭ 79 (-15.96%)
Mutual labels:  stream
Mastodon Api
Mastodon API Client Library
Stars: ✭ 89 (-5.32%)
Mutual labels:  nodejs-modules
Athenax
SQL-based streaming analytics platform at scale
Stars: ✭ 1,178 (+1153.19%)
Mutual labels:  stream
Node Promisepipe
Safely pipe node.js streams while capturing all errors to a single promise
Stars: ✭ 79 (-15.96%)
Mutual labels:  stream
Iostreams
IOStreams is an incredibly powerful streaming library that makes changes to file formats, compression, encryption, or storage mechanism transparent to the application.
Stars: ✭ 84 (-10.64%)
Mutual labels:  stream
Rxjavajdk8interop
RxJava 2/3 interop library for supporting Java 8 features such as Optional, Stream and CompletableFuture [discontinued]
Stars: ✭ 70 (-25.53%)
Mutual labels:  stream
Hyperapp Render
Render Hyperapp to an HTML string with SSR and Node.js streaming support.
Stars: ✭ 93 (-1.06%)
Mutual labels:  stream
Opus Stream Decoder
Instantly decode Ogg Opus audio streams in chunks with JavaScript & WebAssembly (Wasm)
Stars: ✭ 80 (-14.89%)
Mutual labels:  stream
Pinbox
PinBox is a homebrew for 3DS system to stream content from a windows PC to 3DS.
Stars: ✭ 88 (-6.38%)
Mutual labels:  stream
Stream
流媒体解锁后端
Stars: ✭ 71 (-24.47%)
Mutual labels:  stream
String To Stream
Convert a string into a stream (streams2)
Stars: ✭ 75 (-20.21%)
Mutual labels:  stream
Advanced Php
最近打算写一些php一些偏微妙的教程,比如关于多进程、socket等相关,都是自己的一些感悟心得
Stars: ✭ 1,271 (+1252.13%)
Mutual labels:  stream
Sec Api
sec.gov EDGAR API | search & filter SEC filings | over 150 form types supported | 10-Q, 10-K, 8, 4, 13, S-11, ... | insider trading
Stars: ✭ 71 (-24.47%)
Mutual labels:  stream
Backoffice Administration
Stars: ✭ 89 (-5.32%)
Mutual labels:  stream
Nodestream
Storage-agnostic streaming library for binary data transfers
Stars: ✭ 70 (-25.53%)
Mutual labels:  stream
Cloud Media Scripts
Upload and stream media from the cloud with or without encryption. Cache all new and recently streamed media locally to access quickly and reduce API calls
Stars: ✭ 84 (-10.64%)
Mutual labels:  stream
Leoric
👑 JavaScript ORM for MySQL, PostgreSQL, and SQLite.
Stars: ✭ 94 (+0%)
Mutual labels:  nodejs-modules
Shell Conduit
Write shell scripts with Conduit
Stars: ✭ 90 (-4.26%)
Mutual labels:  stream
Phpstreams
A streams library for PHP inspired by the Java 8 Streams API.
Stars: ✭ 87 (-7.45%)
Mutual labels:  stream

NPM version build status Test coverage David deps node version npm download npm license

lei-stream

Read/Write Stream line by line 按行读写流

安装

$ npm install lei-stream --save

需要 Node.js v4.0.0 或更高版本

readLine 按行读取流

使用方法1:

'use strict';

const readLine = require('lei-stream').readLine;

readLine('./myfile.txt').go((data, next) => {
  console.log(data);
  next();
}, function () {
  console.log('end');
});

使用方法2:

'use strict';

const fs = require('fs');
const readLine = require('lei-stream').readLine;

// readLineStream第一个参数为ReadStream实例,也可以为文件名
const s = readLine(fs.createReadStream('./myfile.txt'), {
  // 换行符,默认\n
  newline: '\n',
  // 是否自动读取下一行,默认false
  autoNext: false,
  // 编码器,可以为函数或字符串(内置编码器:json,base64),默认null
  encoding: function (data) {
    return JSON.parse(data);
  }
});

// 读取到一行数据时触发data事件
s.on('data', (data) => {
  console.log(data);
  s.next();
});

// 流结束时触发end事件
s.on('end', () => {
  console.log('end');
});

// 读取时出错
s.on('error', (err) => {
  console.error(err);
});

writeLine

按行写流

'use strict';

const fs = require('fs');
const writeLineStream = require('lei-stream').writeLine;

// writeLineStream第一个参数为WriteStream实例,也可以为文件名
const s = writeLineStream(fs.createWriteStream('./myfile.txt'), {
  // 换行符,默认\n
  newline: '\n',
  // 编码器,可以为函数或字符串(内置编码器:json,base64),默认null
  encoding: function (data) {
    return JSON.stringify(data);
  },
  // 缓存的行数,默认为0(表示不缓存),此选项主要用于优化写文件性能,写入的内容会先存储到缓存中,当内容超过指定数量时再一次性写入到流中,可以提高写速度
  cacheLines: 0
});

// 写一行
s.write(data, () => {
  // 回调函数可选
  console.log('wrote');
});

// 结束
s.end(() => {
  // 回调函数可选
  console.log('end');
});

// 写时出错
s.on('error', (err) => {
  console.error(err);
});

TailStream

监听文件新增内容变化的流(返回的是一个Readable Stream,具体可参考 Node.js API 文档)

'use strict';

const tailStream = require('lei-stream').tailStream;

// 创建流
const s = tailStream('./myfile.txt', {
  position: 'end', // end表示监听之前先定位到文件末尾,否则会先读取出文件之前的所有内容再开始监听
});

// 有新内容会触发data事件
s.on('data', data => {
  console.log(data);
});

License

The MIT License (MIT)

Copyright (c) 2015-2017 Zongmin Lei <[email protected]>
http://ucdok.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].