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 0dcb78a8bd
Merge branch 'master' of github.com:AliasIO/Wappalyzer
8 years ago
..
browsers Fix Ant Design, Sqreen, update Tilda icon, fix bookmarklet 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 NPM driver: add batch processing, protocol check 8 years ago
driver.js Fix problem in version detection via js variables (#2033) 8 years ago
index.js NPM driver: add batch processing, protocol check 8 years ago
package-lock.json Add NPM lock file 8 years ago
package.json Update dependencies (#1989) 8 years ago
yarn.lock Add user agent and max wait options to NPM driver 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 [url] [options]

Options

  --chunk-size=num   Process links in chunks.
  --debug=0|1        Output debug messages.
  --delay=ms         Wait for ms milliseconds between requests.
  --max-depth=num    Don't analyse pages more than num levels deep.
  --max-urls=num     Exit when num URLs have been analysed.
  --max-wait=ms      Wait no more than ms milliseconds for page resources to load.
  --recursive=0|1    Follow links on pages (crawler).
  --user-agent=str   Set the user agent string.

Run from a script

const options = {
  debug: false,
  delay: 500,
  maxDepth: 3,
  maxUrls: 10,
  maxWait: 5000,
  recursive: true,
  userAgent: 'Wappalyzer',
};

const wappalyzer = new Wappalyzer('https://www.wappalyzer.com', options);

wappalyzer.analyze()
  .then(json => {
    process.stdout.write(JSON.stringify(json, null, 2) + '\n')

    process.exit(0);
  })
  .catch(error => {
    process.stderr.write(error + '\n')

    process.exit(1);
});