Skip to content

Instantly share code, notes, and snippets.

@liammclennan
Created August 24, 2017 00:50
Show Gist options
  • Save liammclennan/f2990dd67eba1606bf9b1d0c0b07771b to your computer and use it in GitHub Desktop.
Save liammclennan/f2990dd67eba1606bf9b1d0c0b07771b to your computer and use it in GitHub Desktop.
Node.js console application skeleton
if (process.argv.length < 3) {
console.log('Usage: node ' + process.argv[1] + ' FILENAME');
process.exit(1);
}
var fs = require('fs')
, filename = process.argv[2];
let input = fs.readFileSync(filename, 'utf8');
// write your program here
// output your solution
console.log(input);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment