Skip to content

Instantly share code, notes, and snippets.

@mattdesl
Created July 24, 2014 14:24
Show Gist options
  • Save mattdesl/7ca2f195c37d6ec55935 to your computer and use it in GitHub Desktop.
Save mattdesl/7ca2f195c37d6ec55935 to your computer and use it in GitHub Desktop.
text files with JS
var fs = require('fs');
var text = fs.readFileSync( __dirname + '/words.txt', 'utf8' );
//split into an array
var words = text.trim().split(/\s+/);
this
is
a
list
of
words
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment