docs: simple shell download script for necessary core files

main
Michael Bianco 1 year ago
parent d16838e440
commit 5e256f4dbf
No known key found for this signature in database
GPG Key ID: E5E32D3B0D0B4261

@ -50,3 +50,10 @@ Wappalyzer.analyze({
console.log(results)
})
```
Here's a shell script to download all of the necessary files referenced in the above example:
```shell
http --follow https://raw.githubusercontent.com/wappalyzer/wappalyzer/master/src/categories.json > categories.json
http --follow https://github.com/wappalyzer/wappalyzer/archive/refs/heads/master.tar.gz | tar -xz --strip-components=2 'wappalyzer-master/src/technologies'
```