Skip to content

Instantly share code, notes, and snippets.

View ModestGoblin's full-sized avatar

Thomas Sikma ModestGoblin

View GitHub Profile
var urlOpml = "http://davewiner.com/davewiner.opml";
opmlLib.readOpmlUrl (urlOpml, function (theOutline) {
httpResponse.writeHead (200, {"Content-Type": "application/json", "Access-Control-Allow-Origin": "*"});
httpResponse.end (utils.jsonStringify (theOutline));
});