0.0.0 • Published 11 years ago

node-page-data v0.0.0

Weekly downloads
7
License
-
Repository
github
Last release
11 years ago

node-page-data

Get summary of a url based in semantic and social tags.

Try yourself

  1. git clone git@github.com:felquis/node-page-data.git
  2. npm install
  3. node teste.js

You will see:

summary-content

Open teste.js

// teste.js

var sc = require('./bin/node-page-data');

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);
	}
});

;D