@andrescastillo/wappalyzer

5.4.10 • Public • Published

Wappalyzer (PATCHED VERSION)

Patched version of Wappalyzer that 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);
});

Readme

Keywords

none

Package Sidebar

Install

npm i @andrescastillo/wappalyzer

Weekly Downloads

0

Version

5.4.10

License

GPL-3.0

Unpacked Size

315 kB

Total Files

6

Last publish

Collaborators

  • andrescastillo