Sourcemap Explorer
Stack · Databases

MySQL

MySQL is an open-source relational database management system.

Databases

About

MySQL is an open-source relational database management system.

Categories: Databases

Quick facts

Official sitehttps://mysql.com
CategoriesDatabases

Detection methodology for Databases

Database technologies that interact with the frontend ship their client SDKs as bundled JavaScript. Prisma's `@prisma/client`, Drizzle's `drizzle-orm`, Supabase's `@supabase/supabase-js`, Firebase's `@firebase/app` — each shows up as a `node_modules/<package>/` path in the sourcemap, with the exact version readable from the embedded `package.json`. The actual database server (Postgres, MySQL, SQLite) is not exposed to the browser by design.

FAQ

How do I check if a website is using MySQL?

Open the page in Chrome, click the Sourcemap Explorer toolbar icon, and read the Stack tab. The popup matches MySQL's fingerprint signals (response headers, asset URL prefixes, runtime globals, sourcemap paths) and flags it whenever any combination is found. The same checks can be reproduced manually in DevTools — see the "How we detect" section above.

What MySQL version can Sourcemap Explorer detect?

MySQL ships as a hosted databases rather than a bundled npm package, so version-specific detection isn't always possible. Where the platform leaks a version in response headers (`X-Powered-By`, `Server`, generator meta tags) we surface it; otherwise we report presence only.

Where can I read more about MySQL?

Official site: https://mysql.com. For Sourcemap Explorer's detection guide, see the deep-dive link below or the related guides in the cross-link section.

Keep reading on Sourcemap Explorer

Practical guides

Detected by Sourcemap Explorer

Open the popup on any page running MySQLand you'll see the exact version pulled from the bundled package.json when sourcemaps are exposed.

Install free on Chrome