Stack Detector is a fast Next.js utility that inspects a public website and reports likely technologies in use (frameworks, CMS, hosting, analytics, and more).
Built by Reality Shifting Tech.
npm install
npm run devOpen http://localhost:3000.
npm run build
npm run startPOST /api/analyze
Request:
{
"url": "https://example.com"
}Response:
{
"status": "success",
"data": {
"domain": "example.com",
"url": "https://example.com/",
"technologies": [
{ "name": "Next.js", "category": "Framework", "icon": "nextdotjs" }
],
"scannedAt": "2026-02-07T00:00:00.000Z"
}
}