You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
Elbert Alias ff6ac4726b
Bump version number
8 years ago
..
.gitignore Replace PhantomJS with Zombie in NPM driver 8 years ago
Dockerfile Replace PhantomJS with Zombie in NPM driver 8 years ago
README.md Fix icon not displaying and popup not expanding 8 years ago
driver.js Don't stop on page errors 8 years ago
index.js Define global variables 8 years ago
package.json Bump version number 8 years ago

README.md

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 wappalyzer = require('wappalyzer');

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