JSPM

  • Created
  • Published
  • Downloads 4562
  • Score
    100M100P100Q46060F
  • License GPL-3.0

Uncovers the technologies used on websites

Package Exports

  • wappalyzer
  • wappalyzer/apps
  • wappalyzer/driver
  • wappalyzer/wappalyzer

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (wappalyzer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Wappalyzer

Wappalyzer is a cross-platform utility that uncovers the technologies used on websites. It detects content management systems, eCommerce platforms, web servers, JavaScript frameworks, analytics tools and many more.

Installation

$ npm i wappalyzer

Run from the command line

$ node index.js https://wappalyzer.com

Run from a script

const options = {
  userAgent: 'Wappalyzer',
  maxWait: 3000
};

const wappalyzer = require('wappalyzer')(options);

wappalyzer.analyze('https://wappalyzer.com')
  .then(json => {
    console.log(JSON.stringify(json, null, 2));
  })
  .catch(error => {
    console.error(error);
  });