Change wappalyzer.com to www.wappalyzer.com

main
Elbert Alias 7 years ago
parent 3c51d879ec
commit 06c2a0bbb2

@ -1,18 +1,18 @@
# Wappalyzer [![Travis](https://img.shields.io/travis/AliasIO/Wappalyzer.svg)](https://travis-ci.org/AliasIO/Wappalyzer/) [![Scrutinizer](https://scrutinizer-ci.com/g/AliasIO/Wappalyzer/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/AliasIO/Wappalyzer/?branch=master)
[Wappalyzer](https://wappalyzer.com/) is a
[Wappalyzer](https://www.wappalyzer.com/) is a
[cross-platform](https://github.com/AliasIO/Wappalyzer/wiki/Drivers) utility that uncovers the
technologies used on websites. It detects
[content management systems](https://wappalyzer.com/categories/cms),
[eCommerce platforms](https://wappalyzer.com/categories/ecommerce),
[web servers](https://wappalyzer.com/categories/web-servers),
[JavaScript frameworks](https://wappalyzer.com/categories/javascript-frameworks),
[analytics tools](https://wappalyzer.com/categories/analytics) and
[many more](https://wappalyzer.com/applications).
[content management systems](https://www.wappalyzer.com/categories/cms),
[eCommerce platforms](https://www.wappalyzer.com/categories/ecommerce),
[web servers](https://www.wappalyzer.com/categories/web-servers),
[JavaScript frameworks](https://www.wappalyzer.com/categories/javascript-frameworks),
[analytics tools](https://www.wappalyzer.com/categories/analytics) and
[many more](https://www.wappalyzer.com/applications).
*Licensed under the [GPL](https://github.com/AliasIO/Wappalyzer/blob/master/LICENSE).*
## Documentation
Please read the [developer documentation](https://wappalyzer.com/docs) to get started.
Please read the [developer documentation](https://www.wappalyzer.com/docs) to get started.

@ -1,14 +1,14 @@
# Wappalyzer
[Wappalyzer](https://wappalyzer.com/) is a
[Wappalyzer](https://www.wappalyzer.com/) is a
[cross-platform](https://github.com/AliasIO/Wappalyzer/wiki/Drivers) utility that uncovers the
technologies used on websites. It detects
[content management systems](https://wappalyzer.com/categories/cms),
[eCommerce platforms](https://wappalyzer.com/categories/ecommerce),
[web servers](https://wappalyzer.com/categories/web-servers),
[JavaScript frameworks](https://wappalyzer.com/categories/javascript-frameworks),
[analytics tools](https://wappalyzer.com/categories/analytics) and
[many more](https://wappalyzer.com/applications).
[content management systems](https://www.wappalyzer.com/categories/cms),
[eCommerce platforms](https://www.wappalyzer.com/categories/ecommerce),
[web servers](https://www.wappalyzer.com/categories/web-servers),
[JavaScript frameworks](https://www.wappalyzer.com/categories/javascript-frameworks),
[analytics tools](https://www.wappalyzer.com/categories/analytics) and
[many more](https://www.wappalyzer.com/applications).
## Installation
@ -21,7 +21,7 @@ $ npm i wappalyzer
## Run from the command line
```shell
$ node index.js https://wappalyzer.com
$ node index.js https://www.wappalyzer.com
```
@ -36,7 +36,7 @@ const options = {
const wappalyzer = require('wappalyzer')(options);
wappalyzer.analyze('https://wappalyzer.com')
wappalyzer.analyze('https://www.wappalyzer.com')
.then(json => {
console.log(JSON.stringify(json, null, 2));
})

@ -12,7 +12,7 @@
</head>
<body>
<div class="header">
<a href="https://wappalyzer.com/" class="header__link" target="_blank">
<a href="https://www.wappalyzer.com/" class="header__link" target="_blank">
<img class="header__logo" src="../images/logo-white.svg">
</a>
</div>

@ -76,7 +76,7 @@ function appsToDomTemplate(response) {
'a', {
class: 'detected__app',
target: '_blank',
href: 'https://wappalyzer.com/applications/' + slugify(appName)
href: 'https://www.wappalyzer.com/applications/' + slugify(appName)
}, [
'img', {
class: 'detected__app-icon',
@ -100,7 +100,7 @@ function appsToDomTemplate(response) {
'a', {
class: 'detected__category-link',
target: '_blank',
href: 'https://wappalyzer.com/categories/' + slugify(response.categories[cat].name)
href: 'https://www.wappalyzer.com/categories/' + slugify(response.categories[cat].name)
}, [
'span', {
class: 'detected__category-name'

@ -2,7 +2,7 @@
"name": "Wappalyzer",
"short_name": "Wappalyzer",
"author": "Elbert Alias",
"homepage_url": "https://wappalyzer.com/",
"homepage_url": "https://www.wappalyzer.com/",
"description": "Identify web technologies",
"version": "5.1.5",
"default_locale": "en",

@ -2,7 +2,7 @@
"name": "Wappalyzer",
"short_name": "Wappalyzer",
"author": "Elbert Alias",
"homepage_url": "https://wappalyzer.com/",
"homepage_url": "https://www.wappalyzer.com",
"description": "Identify web technologies",
"version": "5.1.5",
"default_locale": "en",

@ -24,7 +24,7 @@ class Wappalyzer {
this.adCache = [];
this.config = {
websiteURL: 'https://wappalyzer.com/',
websiteURL: 'https://www.wappalyzer.com/',
twitterURL: 'https://twitter.com/Wappalyzer',
githubURL: 'https://github.com/AliasIO/Wappalyzer',
};
@ -166,7 +166,7 @@ class Wappalyzer {
*
*/
ping() {
if ( Object.keys(this.hostnameCache).length >= 50 || this.adCache.length >= 50 ) {
if ( Object.keys(this.hostnameCache).length + this.adCache.length > 200 ) {
this.driver.ping(this.hostnameCache, this.adCache);
this.hostnameCache = {};

Loading…
Cancel
Save