0.1.8 • Published 8 years ago

http-extractor v0.1.8

Weekly downloads
1
License
MIT
Repository
github
Last release
8 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

8 years ago

0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

9 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago

0.0.0

9 years ago