get-css v4.0.3
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.
Installation
npm i --save get-cssFor the CLI
npm i -g get-cssUsage
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)
})Using the CLI
npm i -g get-css
getcss google.com > google.cssResponse
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
License
MIT
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago