oust
Extract URLs to stylesheets, scripts, links, images or HTML imports from HTML
Install
$ npm install --save-dev oust
Usage
First include:
var oust = require('oust');
Resource links can then be extracted from either files:
var hrefs = oust(htmlString, 'stylesheets');
var hrefs = oust(htmlString, 'stylesheets', function(i, $el) {
return $el.attr('media') === 'print';
});
var srcs = oust(htmlString, 'scripts');
var hrefs = oust(htmlString, 'imports');
var srcs = oust(htmlString, 'links');
var srcs = oust(htmlString, 'images');
Usefull for post processing/filtering as you get an array of matched elements
with cheerio convenience syntax (e.g. $el.attr()
)
var srcs = oust.raw(htmlString, '...');
-> [
{value: '...', $el: '...'},
{value: '...', $el: '...'},
...
]
API
Options
Attribute | Default | Description |
---|
src | `` | a valid HTML string to parse for references |
type | `` | one of stylesheets , scripts , imports , links , images |
CLI
$ npm install --global oust
Extract URLs to stylesheets, scripts, links, images or HTML imports from HTML
Usage:
$ oust <filename> <type>
$ oust myFile.html stylesheets
$ oust myFile.html scripts
$ oust myFile.html imports
$ oust myFile.html links
$ oust myFile.html images
License
Released under an Apache 2 license. © Google 2014.