Skip to content

Instantly share code, notes, and snippets.

@rafaelmaeuer
Last active October 9, 2017 13:15
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 rafaelmaeuer/b175eacdcc4e2f0ca4d89cbd631638fe to your computer and use it in GitHub Desktop.
Save rafaelmaeuer/b175eacdcc4e2f0ca4d89cbd631638fe to your computer and use it in GitHub Desktop.
var fs = require('fs');
var array = fs.readFileSync('file.txt').toString().split("\n");
for(i in array) {
console.log(array[i]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment