sievejs
v0.1.1
Published
Turns any API into a client-side API.
Readme
Sieve [
]
Try the live demo!
Sieve makes any resource on the web available to your application with minimal overhead, and zero extra dependencies.
Installation
npm install sievejsUsage
var sieve = require('sievejs');
var request = {
"url": "https://api.github.com/repos/alexose/sieve/commits",
"selector": ".commit .date"
};
sieve.get(request, function(result){
console.log(result);
});Development
Tests are run under Mocha:
npm testDocumentation
Additional documentation can be found on the Wiki.
