Scrape data from BuiltWith.com
npm install builtwith --save
Get all upcoming matches
const builtWith = require('builtwith');
builtWith('github.com')
.then(response => {
console.log(response);
})
.catch(err => {
console.log(err);
});
//=> {
//=> "frameworks": [
//=> {
//=> "title": " Ruby on Rails Token",
//=> "description": "Ruby on Rails is an open-source ..."
//=> }
//=> ],
//=> "email services": [],
//=> "nameserver providers": [],
//=> "ssl certificate": [],
//=> "analytics and tracking": [],
//=> "javascript libraries": [],
//=> "mobile": [],
//=> "document information": [],
//=> "encoding": [],
//=> "server information": [],
//=> "css media queries": []
//=> }
- builtwith-cli - CLI for this module
MIT © Daniel Eckermann