0.2.0 • Published 11 years ago

scrim v0.2.0

Weekly downloads
5
License
-
Repository
github
Last release
11 years ago

scrim - scrape image URIs from an HTML page

Build Status

A through Stream to scrape image URIs from an HTML page. You pipe an HTML formatted string to it, and it emits image URIs.

Usage

var scrim = require('scrim')
  , cop = require('cop')
  , request = require('request')

request('http://npmjs.org')
  .pipe(scrim())
  .pipe(cop(function (uri) { return uri + '\n' }))
  .pipe(process.stdout)

Installation

Install with npm:

npm install scrim

License

MIT License

0.2.0

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago

0.0.1

11 years ago