Releasing V1.0.0 of textics-stream: Node Text Statistics For Streams

栏目: IT技术 · 发布时间: 5年前

内容简介:This project is licensed under the

textics-stream

text/ics-stream is a node version of textics . Counts lines, words, chars and spaces for a stream of strings :shower:

npm install textics-stream

API

import TStream from "textics-stream";

const txtStream = new TStream();

// Start counting
myStream.pipe(txtStream);

// Get lat chunk stat result
txtStream.on("latChunkStat", result => {
  // result : {lines, words, chars, spaces}
});

// Get all stat counters
txtStream.getStat();

Example

import TStream from "textics-stream";
import fs from "fs";

// Create read stream for file you want to read form
const rStream = fs.createReadStream(myFile);

// Create TexticsStream instance
const txtStream = new TStream();

// Pass reading stream to textics
rStream.pipe(txtStream);

// For each chunk passed, give me the result
txtStream.on("latChunkStat", result => {
  // do something
});

// When done, give me the final result
rStream.on("end", () => {
  const { lines, words, chars, spaces } = txtStream.getStat();
});

Related projects

  • textics - Using textics for browser.

  • packageSorter - Sorting packages for monorepos production.

  • builderz - Building your project with zero config.

  • corename - Extracts package name.

  • get-info - Utility functions for projects production.

  • move-position - Moves element in given array form index-A to index-B

Tests

npm test

License

This project is licensed under the GPL-3.0 License


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

电脑报(上下册)

电脑报(上下册)

电脑报社 / 西南师范大学出版社 / 2006-12-01 / 45.00元

全套上、下两册,浓缩2006年电脑报精华文章。附录包含70余篇简明IT应用指南,覆盖软件、硬盘、数码、网络四大领域。配赠权威实用的2006-2007中国计算机年鉴DVD光盘,近1.4GB海量信息与资源超值奉献。8大正版超值软件,涵盖系统维护、系统安全、办公应用、多媒体娱乐等四大领域。微软、腾讯、友立等知名厂商,新年献礼。提供2006-2007全系列硬件、数码产品资讯,兼具知识性与资料性。官方网站全......一起来看看 《电脑报(上下册)》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具