simple-wappalyzer 1.1.37 → 1.1.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "simple-wappalyzer",
3
3
  "description": "A simple way to interacting with Wappalyzer.",
4
4
  "homepage": "https://nicedoc.io/Kikobeats/simple-wappalyzer",
5
- "version": "1.1.37",
5
+ "version": "1.1.38",
6
6
  "main": "src/index.js",
7
7
  "author": {
8
8
  "email": "josefrancisco.verdu@gmail.com",
@@ -3,14 +3,38 @@
3
3
  const writeJsonFile = require('write-json-file')
4
4
  const got = require('got')
5
5
 
6
- const main = async () => {
7
- const technologies = await got(
8
- 'https://cdn.jsdelivr.net/gh/aliasio/wappalyzer@master/src/technologies.json'
6
+ const fetchTechnologies = async () => {
7
+ const chars = Array.from({ length: 27 }, (value, index) =>
8
+ index ? String.fromCharCode(index + 96) : '_'
9
+ )
10
+
11
+ const data = await Promise.all(
12
+ chars.map(char =>
13
+ got(
14
+ `https://cdn.jsdelivr.net/gh/aliasio/wappalyzer@master/src/technologies/${char}.json`
15
+ ).json()
16
+ )
17
+ )
18
+
19
+ const technologies = data.reduce(
20
+ (acc, obj) => ({
21
+ ...acc,
22
+ ...obj
23
+ }),
24
+ {}
25
+ )
26
+
27
+ return writeJsonFile('src/technologies.json', technologies)
28
+ }
29
+
30
+ const fetchCategories = async () => {
31
+ const categories = await got(
32
+ 'https://cdn.jsdelivr.net/gh/aliasio/wappalyzer@master/src/categories.json'
9
33
  ).json()
10
34
 
11
- await writeJsonFile('src/technologies.json', technologies)
35
+ return writeJsonFile('src/categories.json', categories)
12
36
  }
13
37
 
14
- main()
38
+ Promise.all([fetchTechnologies(), fetchCategories()])
15
39
  .catch(err => console.error(err) && process.exit(0))
16
40
  .then(process.exit)
@@ -0,0 +1,688 @@
1
+ {
2
+ "1": {
3
+ "groups": [
4
+ 3
5
+ ],
6
+ "name": "CMS",
7
+ "priority": 1
8
+ },
9
+ "2": {
10
+ "groups": [
11
+ 3,
12
+ 4,
13
+ 18
14
+ ],
15
+ "name": "Message boards",
16
+ "priority": 1
17
+ },
18
+ "3": {
19
+ "groups": [
20
+ 5
21
+ ],
22
+ "name": "Database managers",
23
+ "priority": 2
24
+ },
25
+ "4": {
26
+ "groups": [
27
+ 3
28
+ ],
29
+ "name": "Documentation",
30
+ "priority": 2
31
+ },
32
+ "5": {
33
+ "groups": [
34
+ 6
35
+ ],
36
+ "name": "Widgets",
37
+ "priority": 9
38
+ },
39
+ "6": {
40
+ "groups": [
41
+ 1
42
+ ],
43
+ "name": "Ecommerce",
44
+ "priority": 1
45
+ },
46
+ "7": {
47
+ "groups": [
48
+ 3,
49
+ 10
50
+ ],
51
+ "name": "Photo galleries",
52
+ "priority": 1
53
+ },
54
+ "8": {
55
+ "groups": [
56
+ 3
57
+ ],
58
+ "name": "Wikis",
59
+ "priority": 1
60
+ },
61
+ "9": {
62
+ "groups": [
63
+ 5,
64
+ 7
65
+ ],
66
+ "name": "Hosting panels",
67
+ "priority": 2
68
+ },
69
+ "10": {
70
+ "groups": [
71
+ 8
72
+ ],
73
+ "name": "Analytics",
74
+ "priority": 9
75
+ },
76
+ "11": {
77
+ "groups": [
78
+ 3
79
+ ],
80
+ "name": "Blogs",
81
+ "priority": 1
82
+ },
83
+ "12": {
84
+ "groups": [
85
+ 9
86
+ ],
87
+ "name": "JavaScript frameworks",
88
+ "priority": 8
89
+ },
90
+ "13": {
91
+ "groups": [
92
+ 3,
93
+ 18
94
+ ],
95
+ "name": "Issue trackers",
96
+ "priority": 2
97
+ },
98
+ "14": {
99
+ "groups": [
100
+ 10
101
+ ],
102
+ "name": "Video players",
103
+ "priority": 7
104
+ },
105
+ "15": {
106
+ "groups": [
107
+ 3,
108
+ 18
109
+ ],
110
+ "name": "Comment systems",
111
+ "priority": 9
112
+ },
113
+ "16": {
114
+ "groups": [
115
+ 11
116
+ ],
117
+ "name": "Security",
118
+ "priority": 9
119
+ },
120
+ "17": {
121
+ "groups": [
122
+ 9
123
+ ],
124
+ "name": "Font scripts",
125
+ "priority": 9
126
+ },
127
+ "18": {
128
+ "groups": [
129
+ 9
130
+ ],
131
+ "name": "Web frameworks",
132
+ "priority": 7
133
+ },
134
+ "19": {
135
+ "groups": [
136
+ 6
137
+ ],
138
+ "name": "Miscellaneous",
139
+ "priority": 10
140
+ },
141
+ "20": {
142
+ "groups": [
143
+ 9
144
+ ],
145
+ "name": "Editors",
146
+ "priority": 4
147
+ },
148
+ "21": {
149
+ "groups": [
150
+ 3
151
+ ],
152
+ "name": "LMS",
153
+ "priority": 1
154
+ },
155
+ "22": {
156
+ "groups": [
157
+ 7
158
+ ],
159
+ "name": "Web servers",
160
+ "priority": 8
161
+ },
162
+ "23": {
163
+ "groups": [
164
+ 7
165
+ ],
166
+ "name": "Caching",
167
+ "priority": 7
168
+ },
169
+ "24": {
170
+ "groups": [
171
+ 3
172
+ ],
173
+ "name": "Rich text editors",
174
+ "priority": 5
175
+ },
176
+ "25": {
177
+ "groups": [
178
+ 9
179
+ ],
180
+ "name": "JavaScript graphics",
181
+ "priority": 6
182
+ },
183
+ "26": {
184
+ "groups": [
185
+ 9
186
+ ],
187
+ "name": "Mobile frameworks",
188
+ "priority": 8
189
+ },
190
+ "27": {
191
+ "groups": [
192
+ 9
193
+ ],
194
+ "name": "Programming languages",
195
+ "priority": 5
196
+ },
197
+ "28": {
198
+ "groups": [
199
+ 7
200
+ ],
201
+ "name": "Operating systems",
202
+ "priority": 6
203
+ },
204
+ "29": {
205
+ "groups": [
206
+ 3
207
+ ],
208
+ "name": "Search engines",
209
+ "priority": 4
210
+ },
211
+ "30": {
212
+ "groups": [
213
+ 4
214
+ ],
215
+ "name": "Webmail",
216
+ "priority": 2
217
+ },
218
+ "31": {
219
+ "groups": [
220
+ 7
221
+ ],
222
+ "name": "CDN",
223
+ "priority": 9
224
+ },
225
+ "32": {
226
+ "groups": [
227
+ 2
228
+ ],
229
+ "name": "Marketing automation",
230
+ "priority": 9
231
+ },
232
+ "33": {
233
+ "groups": [
234
+ 7
235
+ ],
236
+ "name": "Web server extensions",
237
+ "priority": 7
238
+ },
239
+ "34": {
240
+ "groups": [
241
+ 7
242
+ ],
243
+ "name": "Databases",
244
+ "priority": 5
245
+ },
246
+ "35": {
247
+ "groups": [
248
+ 17
249
+ ],
250
+ "name": "Maps",
251
+ "priority": 6
252
+ },
253
+ "36": {
254
+ "groups": [
255
+ 2
256
+ ],
257
+ "name": "Advertising",
258
+ "priority": 9
259
+ },
260
+ "37": {
261
+ "groups": [
262
+ 7
263
+ ],
264
+ "name": "Network devices",
265
+ "priority": 2
266
+ },
267
+ "38": {
268
+ "groups": [
269
+ 10,
270
+ 7
271
+ ],
272
+ "name": "Media servers",
273
+ "priority": 1
274
+ },
275
+ "39": {
276
+ "groups": [
277
+ 4
278
+ ],
279
+ "name": "Webcams",
280
+ "priority": 9
281
+ },
282
+ "41": {
283
+ "groups": [
284
+ 1
285
+ ],
286
+ "name": "Payment processors",
287
+ "priority": 8
288
+ },
289
+ "42": {
290
+ "groups": [
291
+ 8
292
+ ],
293
+ "name": "Tag managers",
294
+ "priority": 9
295
+ },
296
+ "44": {
297
+ "groups": [
298
+ 9
299
+ ],
300
+ "name": "CI",
301
+ "priority": 3
302
+ },
303
+ "45": {
304
+ "groups": [
305
+ 7
306
+ ],
307
+ "name": "Control systems",
308
+ "priority": 2
309
+ },
310
+ "46": {
311
+ "groups": [
312
+ 4
313
+ ],
314
+ "name": "Remote access",
315
+ "priority": 1
316
+ },
317
+ "47": {
318
+ "groups": [
319
+ 9
320
+ ],
321
+ "name": "Development",
322
+ "priority": 2
323
+ },
324
+ "48": {
325
+ "groups": [
326
+ 10
327
+ ],
328
+ "name": "Network storage",
329
+ "priority": 2
330
+ },
331
+ "49": {
332
+ "groups": [
333
+ 3
334
+ ],
335
+ "name": "Feed readers",
336
+ "priority": 1
337
+ },
338
+ "50": {
339
+ "groups": [
340
+ 3
341
+ ],
342
+ "name": "DMS",
343
+ "priority": 1
344
+ },
345
+ "51": {
346
+ "groups": [
347
+ 9
348
+ ],
349
+ "name": "Page builders",
350
+ "priority": 2
351
+ },
352
+ "52": {
353
+ "groups": [
354
+ 4,
355
+ 16
356
+ ],
357
+ "name": "Live chat",
358
+ "priority": 9
359
+ },
360
+ "53": {
361
+ "groups": [
362
+ 2,
363
+ 16
364
+ ],
365
+ "name": "CRM",
366
+ "priority": 5
367
+ },
368
+ "54": {
369
+ "groups": [
370
+ 2
371
+ ],
372
+ "name": "SEO",
373
+ "priority": 8
374
+ },
375
+ "55": {
376
+ "groups": [
377
+ 16
378
+ ],
379
+ "name": "Accounting",
380
+ "priority": 1
381
+ },
382
+ "56": {
383
+ "groups": [
384
+ 5
385
+ ],
386
+ "name": "Cryptominers",
387
+ "priority": 5
388
+ },
389
+ "57": {
390
+ "groups": [
391
+ 9
392
+ ],
393
+ "name": "Static site generator",
394
+ "priority": 1
395
+ },
396
+ "58": {
397
+ "groups": [
398
+ 6
399
+ ],
400
+ "name": "User onboarding",
401
+ "priority": 8
402
+ },
403
+ "59": {
404
+ "groups": [
405
+ 9
406
+ ],
407
+ "name": "JavaScript libraries",
408
+ "priority": 9
409
+ },
410
+ "60": {
411
+ "groups": [
412
+ 7
413
+ ],
414
+ "name": "Containers",
415
+ "priority": 8
416
+ },
417
+ "62": {
418
+ "groups": [
419
+ 7
420
+ ],
421
+ "name": "PaaS",
422
+ "priority": 8
423
+ },
424
+ "63": {
425
+ "groups": [
426
+ 7
427
+ ],
428
+ "name": "IaaS",
429
+ "priority": 8
430
+ },
431
+ "64": {
432
+ "groups": [
433
+ 7
434
+ ],
435
+ "name": "Reverse proxies",
436
+ "priority": 7
437
+ },
438
+ "65": {
439
+ "groups": [
440
+ 7
441
+ ],
442
+ "name": "Load balancers",
443
+ "priority": 7
444
+ },
445
+ "66": {
446
+ "groups": [
447
+ 9
448
+ ],
449
+ "name": "UI frameworks",
450
+ "priority": 7
451
+ },
452
+ "67": {
453
+ "groups": [
454
+ 13
455
+ ],
456
+ "name": "Cookie compliance",
457
+ "priority": 9
458
+ },
459
+ "68": {
460
+ "groups": [
461
+ 9
462
+ ],
463
+ "name": "Accessibility",
464
+ "priority": 9
465
+ },
466
+ "69": {
467
+ "groups": [
468
+ 11
469
+ ],
470
+ "name": "Authentication",
471
+ "priority": 6
472
+ },
473
+ "70": {
474
+ "groups": [
475
+ 11
476
+ ],
477
+ "name": "SSL/TLS certificate authorities",
478
+ "priority": 9
479
+ },
480
+ "71": {
481
+ "groups": [
482
+ 2
483
+ ],
484
+ "name": "Affiliate programs",
485
+ "priority": 9
486
+ },
487
+ "72": {
488
+ "groups": [
489
+ 14
490
+ ],
491
+ "name": "Appointment scheduling",
492
+ "priority": 9
493
+ },
494
+ "73": {
495
+ "groups": [
496
+ 8
497
+ ],
498
+ "name": "Surveys",
499
+ "priority": 9
500
+ },
501
+ "74": {
502
+ "groups": [
503
+ 8
504
+ ],
505
+ "name": "A/B Testing",
506
+ "priority": 9
507
+ },
508
+ "75": {
509
+ "groups": [
510
+ 4,
511
+ 2
512
+ ],
513
+ "name": "Email",
514
+ "priority": 9
515
+ },
516
+ "76": {
517
+ "groups": [
518
+ 2
519
+ ],
520
+ "name": "Personalisation",
521
+ "priority": 9
522
+ },
523
+ "77": {
524
+ "groups": [
525
+ 2
526
+ ],
527
+ "name": "Retargeting",
528
+ "priority": 9
529
+ },
530
+ "78": {
531
+ "groups": [
532
+ 2
533
+ ],
534
+ "name": "RUM",
535
+ "priority": 9
536
+ },
537
+ "79": {
538
+ "groups": [
539
+ 17
540
+ ],
541
+ "name": "Geolocation",
542
+ "priority": 9
543
+ },
544
+ "80": {
545
+ "groups": [
546
+ 15
547
+ ],
548
+ "name": "WordPress themes",
549
+ "priority": 9
550
+ },
551
+ "81": {
552
+ "groups": [
553
+ 15
554
+ ],
555
+ "name": "Shopify themes",
556
+ "priority": 9
557
+ },
558
+ "82": {
559
+ "groups": [
560
+ 15
561
+ ],
562
+ "name": "Drupal themes",
563
+ "priority": 9
564
+ },
565
+ "83": {
566
+ "groups": [
567
+ 8
568
+ ],
569
+ "name": "Browser fingerprinting",
570
+ "priority": 9
571
+ },
572
+ "84": {
573
+ "groups": [
574
+ 1
575
+ ],
576
+ "name": "Loyalty & rewards",
577
+ "priority": 9
578
+ },
579
+ "85": {
580
+ "groups": [
581
+ 9
582
+ ],
583
+ "name": "Feature management",
584
+ "priority": 9
585
+ },
586
+ "86": {
587
+ "groups": [
588
+ 2
589
+ ],
590
+ "name": "Segmentation",
591
+ "priority": 9
592
+ },
593
+ "87": {
594
+ "groups": [
595
+ 15
596
+ ],
597
+ "name": "WordPress plugins",
598
+ "priority": 9
599
+ },
600
+ "88": {
601
+ "groups": [
602
+ 7
603
+ ],
604
+ "name": "Hosting",
605
+ "priority": 9
606
+ },
607
+ "89": {
608
+ "groups": [
609
+ 3
610
+ ],
611
+ "name": "Translation",
612
+ "priority": 9
613
+ },
614
+ "90": {
615
+ "groups": [
616
+ 2,
617
+ 18
618
+ ],
619
+ "name": "Reviews",
620
+ "priority": 9
621
+ },
622
+ "91": {
623
+ "groups": [
624
+ 1
625
+ ],
626
+ "name": "Buy now pay later",
627
+ "priority": 9
628
+ },
629
+ "92": {
630
+ "groups": [
631
+ 7
632
+ ],
633
+ "name": "Performance",
634
+ "priority": 9
635
+ },
636
+ "93": {
637
+ "groups": [
638
+ 14
639
+ ],
640
+ "name": "Reservations & delivery",
641
+ "priority": 9
642
+ },
643
+ "94": {
644
+ "groups": [
645
+ 2,
646
+ 1
647
+ ],
648
+ "name": "Referral marketing",
649
+ "priority": 9
650
+ },
651
+ "95": {
652
+ "groups": [
653
+ 10
654
+ ],
655
+ "name": "Digital asset management",
656
+ "priority": 9
657
+ },
658
+ "96": {
659
+ "groups": [
660
+ 2,
661
+ 18
662
+ ],
663
+ "name": "Content curation",
664
+ "priority": 9
665
+ },
666
+ "97": {
667
+ "groups": [
668
+ 2,
669
+ 8
670
+ ],
671
+ "name": "Customer data platform",
672
+ "priority": 9
673
+ },
674
+ "98": {
675
+ "groups": [
676
+ 1
677
+ ],
678
+ "name": "Cart abandonment",
679
+ "priority": 9
680
+ },
681
+ "99": {
682
+ "groups": [
683
+ 1
684
+ ],
685
+ "name": "Shipping carriers",
686
+ "priority": 9
687
+ }
688
+ }