summary-content
v0.0.0
Published
Get summary of a url based in semantic and social tags
Downloads
5
Readme
summary-content
Get summary of a url based in semantic and social tags.
Try yourself
git clone [email protected]:felquis/summary-content.git
npm install
node teste.js
You will see:
Open teste.js
// teste.js
var sc = require('./bin/summary-content');
var url = sc.summarycontent({
url: 'http://www.tutsmais.com.br/blog',
onError: function (e) {
console.log('Error: ', e);
},
onContent: function (e) {
console.log('Success: ', e);
}
});