0.1.1 • Published 6 years ago

sievejs v0.1.1

Weekly downloads
27
License
MIT
Repository
github
Last release
6 years ago

Sieve [Build Status]

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 sievejs

Usage

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 test

Documentation

Additional documentation can be found on the Wiki.