Package Exports
- get-css
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (get-css) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Get CSS
Node module to get CSS from a URL
Returns a promise for an object with details about a document's CSS Used in http://cssstats.com
Usage
var getCss = require('get-css');
var options = {
timeout: 5000
};
getCss('http://github.com', options)
.then(function(response) {
console.log(response);
})
.catch(function(error) {
console.error(error);
});Response
links
An array of objects base on rel=stylesheet links found in the document.
Each object has the following:
link- the value from thehrefattribute for each link tagurl- an absolute url representation of the linkcss- the contents of the file in the linkimports- an array of urls for@importrules
styles
An array of contents from style tags found in the document.
css
A concatenated string of all css found in links and styles
pageTitle
The contents of the title tag in the document.
Options
timeout
An integer to reflect the timeout for the request. Default: 5000
ignoreCerts
A boolean to determine whether invalid certificates are ignored. Default: false
verbose
A boolean to determine whether errors should be console.logged. Default: false