#!/usr/bin/env node var https = require('https'); function get(uri, callback) { var content = ''; // console.log('Downloading', uri); https.request(uri, function (response) { response.on('data', function (chunk) { content += chunk; }); response.on('end', function () { callback(content); }); }).end(); } function process(uri, callback) { var entities = []; get(uri, function (content) { var lines = content.split('\n'); lines.forEach(function (line) { var name, code; if (line.indexOf('