https://github.com/ecrmnn/builtwith
Scrape data from BuiltWith.com
https://github.com/ecrmnn/builtwith
Last synced: 3 months ago
JSON representation
Scrape data from BuiltWith.com
- Host: GitHub
- URL: https://github.com/ecrmnn/builtwith
- Owner: ecrmnn
- Created: 2016-04-17T16:28:35.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-05T11:09:36.000Z (almost 8 years ago)
- Last Synced: 2025-03-19T07:51:36.378Z (3 months ago)
- Language: JavaScript
- Homepage: https://npmjs.com/builtwith
- Size: 2.93 KB
- Stars: 17
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# builtwith
> Scrape data from BuiltWith.com[](https://travis-ci.org/ecrmnn/builtwith.svg?branch=master)
[](http://badge.fury.io/js/builtwith)
[](http://badge.fury.io/js/builtwith)
[](http://badge.fury.io/js/builtwith)### Installation
```bash
npm install builtwith --save
```### Usage
Get all upcoming matches
```javascript
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
- [builtwith-cli](https://github.com/ecrmnn/builtwith-cli) - CLI for this module### License
MIT © [Daniel Eckermann](http://danieleckermann.com)