Created
October 5, 2015 00:37
-
-
Save neofreko/cc6716312c94783b5596 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var summary = require('node-tldr'); | |
summary.summarize('https://aws.amazon.com/blogs/aws/are-you-well-architected/', function(result, failure) { | |
if (failure) { | |
console.log("An error occured! " + result.error); | |
} | |
console.log(result.title); | |
console.log(result.words); | |
console.log(result.compressFactor); | |
console.log(result.summary.join("\n")); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment