Coder Social home page Coder Social logo

node-linereader's Introduction

linereader

Reading a url or file line by line. Forked from line-by-line, and made some improvements:

  • change process.nextTick to setImmediate
  • add lineno (number of line)
  • support url with the http or https prefix, case-insensitive
  • use iconv-lite, support more encoding
  • use StringDecoder when encoding set to utf8, ascii or base64

Install

npm install linereader

Usage

var LineReader = require('linereader');
var lr = new LineReader('./linereader.js');
// var lr = new LineReader('./linereader.js', {skipEmptyLines: true});
// var lr = new LineReader('https://github.com/');
// var lr = new LineReader('https://raw.githubusercontent.com/nswbmw/N-blog/master/public/images/lufei.jpg', {encoding: "base64"});
// var lr = new LineReader('HTTP://www.hot3c.com', {encoding: 'Big5'});

lr.on('error', function (err) {
  console.log(err);
  lr.close();
});

lr.on('line', function (lineno, line) {
  if (lineno <= 100) {
    console.log(lineno + "   " + line);
  } else {
    lr.close();
  }
  lr.pause();
  setTimeout(function () {
    lr.resume();
  }, 100);
});

lr.on('end', function () {
  console.log("End");
});

API

Class: LineReader(path [, options])

  • path: a file path or url.

  • options: an object with the following defaults: {encoding: 'utf8', skipEmptyLines: false}.

NB: encoding refer to iconv-lite. when encoding set to utf8, ascii or base64, linereader will use StringDecoder automatically. If skipEmptyLines set to true, empty lines don't trigger a 'line' event but still keep its lineno.

Event: 'line'

lr.on('line', function (lineno, line) {
  ...
}

Emitted on every line read. lineno is the current line number, line contains the line without the line ending character.

Event: 'error'

lr.on('error', function (err) {
  ...
}

Emitted if an error occurred. err contains the error object.

Event: 'end'

lr.on('end', function () {
  ...
}

Emitted if all lines are read or after using lr.close().

lr.pause()

Call this method to stop emitting 'line' events.

lr.resume()

After calling this method, 'line' events gets emitted again.

lr.close()

Stops emitting 'line' events and emits the 'end' event.

Test

node ./example

License

MIT

node-linereader's People

Contributors

nswbmw avatar sebavenditti avatar sxd1140 avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

node-linereader's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.