0.1.8 • Published 9 years ago

http-extractor v0.1.8

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

NPM version Build Status Dependency Status

Extractor module designed to extract data from a source.

Install

$ npm install http-extractor --save

Usage

The http-extractor is a module designed to work with the chrysalis framework - https://github.com/APPrise-Mobile/chrysalis. It is tasked with fetching data from a remote source.

var httpExtractor = require('http-extractor');

var extractor = httpExtractor('http://remote-source.com');
extractor.extract();

or

var httpExtractor = require('http-extractor');

var options = {
  url: 'http://remote-source.com',
  extractionPath: 'path.to.destination.object'
}
var extractor = httpExtractor(options);
extractor.extract();

if 'extractionPath' is set in the options, then the extractor will return a deep object GET on the path supplied.

#API

  • extractor.extract() - Run the extraction process.

License

MIT © APPrise-Mobile

0.1.8

9 years ago

0.1.7

9 years ago

0.1.6

10 years ago

0.1.5

11 years ago

0.1.4

11 years ago

0.1.3

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago

0.0.0

11 years ago