Socket
Book a DemoInstallSign in
Socket

readlinestream

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

readlinestream

Read a file line by line

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

#ReadLineStream ... is a Node.js module to read a file line by line.

##Intsallation npm install readlinestream

In your file:

var rls = require("readlinestream");
var stream = rls.createReadStream("eitel.txt");
stream.on("line", function(line) {
	console.log("Line: " + line);
});

Keywords

line

FAQs

Package last updated on 13 Nov 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts