call-external
v0.0.2
Published
A powerful way to get data (http, redis, mongo)
Downloads
5
Readme
Call - A powerful way to get data
Built upon Request it has extended functionality.
var Call = require('call-external');
new Call().setObject({"name": "The Developer"}).timer().http({"url": "http://google.com", "cb": function(c){
console.log(c.data.substr(0,200));
console.log(c.obj.name);
}});
new Call().http({"url": "http://google.com", "cb": function(c){
console.log(c.data);
}});
More Features coming soon...as well as collaborating packages