1.0.0 • Published 5 years ago

web-technology-detector v1.0.0

Weekly downloads
6
License
GPL-3.0
Repository
github
Last release
5 years ago

web-technology-detector web-technology-detector web-technology-detector

web technology detection

This simple module can help you detect CDN, label scripts or styles, CMS and more

installation

npm i web-technology-detector

Usage

  • load by URL

      const detector   = require('web-technology-detector');
    
      let technologies = new detector().url('https://codeot.com');
  • provide data (useful if using puppeteer fetch or any alternative which already provides data)

    ```javascript
    const detector   = require('web-technology-detector');
    let technologies = new detector().identify(url, {
      html,
      scripts,
      cookie,
      headers
    });
    **Please note**
  • scripts == array of script links
  • html == plain text string html
  • cookie == cookie string
  • headers == array of headers

Twitter Github Codeot