builtwith

Scrape data from BuiltWith.com

Usage no npm install needed!

<script type="module">
  import builtwith from 'https://cdn.skypack.dev/builtwith';
</script>

README

builtwith

Scrape data from BuiltWith.com

Travis npm version npm downloads npm license

Installation

npm install builtwith --save

Usage

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": []
//=>  }

Related

License

MIT © Daniel Eckermann