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.

1.2 KiB

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 --quiet

Run from a script

const wappalyzer = require('@wappalyzer/wappalyzer');

wappalyzer.run(['https://wappalyzer.com', '--quiet'], function(stdout, stderr) {
	if ( stdout ) {
		process.stdout.write(stdout);
	}

	if ( stderr ) {
		process.stderr.write(stderr);
	}
});

Arguments

-v, --verbose

Display debug output.

-q, --quiet

Suppress errors.

--resource-timeout=ms

Abort the connection after 'ms' milliseconds.