Skip to content

Instantly share code, notes, and snippets.

@kyungw00k
Created August 31, 2015 04:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyungw00k/2cd769393242fc3cac04 to your computer and use it in GitHub Desktop.
Save kyungw00k/2cd769393242fc3cac04 to your computer and use it in GitHub Desktop.
Read line by line in NodeJS
require('fs')
.readFileSync(process.argv[2])
.toString()
.split(/\r?\n/)
.forEach(function (line) {
/* do somthing */
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment