This repository contains a dockerized and 'API-fied' version of Wappalyzer. It aims to make it available through an API endpoint you can call from anywhere. It uses Chrome Headless as execution engine and is built in Go.
env GOOS=linux GOARCH=amd64 go build -o server
docker build hunter-io/wappalyzer-api
docker run --name wappalyzer-api --rm -p 3001:3001 hunter-io/wappalyzer-api
curl -XPOST 'localhost:3001/extract' -d 'url=https://google.com'
Derived work of Wappalyzer and Automatic Google Chrome Debugger.
Licensed under GPL-3.0.