0.0.4 • Published 7 years ago

robin-hood v0.0.4

Weekly downloads
6
License
ISC
Repository
github
Last release
7 years ago

robin-hood

NPM version Build Status Dependency Status Coverage percentage experimental

Install

npm install robin-hood --save

Usage

import RobinHood from "robin-hood";
import {sel, text} from "page-grabber";

const robin = new RobinHood();
robin.grab("http://google.com", {
    model: sel("title", text()),
    convert: (d) => d,
}).then((data)=>{
    console.log(data); // Google
});    

API

Test

npm install
npm test