
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
bun-sql-studio
Advanced tools
A modern, zero-config SQL database studio for Bun
Bun SQL Studio is a fast, professional database interface for SQLite, PostgreSQL, and MySQL. It lets you browse tables, run queries, and inspect data with minimal setup—designed for developers who want tooling that just works.
Most database tools fall into two extremes:
On top of that, many “simple” database UIs quietly depend on extra system binaries.
sqlite3, psql, or mysql clientsIf Bun runs, Bun SQL Studio runs.
Bun SQL Studio uses one configuration file for all databases.
Create bun-sql-studio.json in your project root and define either a SQLite file path or a database connection string.
bunx bun-sql-studio
The studio starts at:
http://localhost:4987




bun-sql-studio.json{
"dialect": "sqlite",
"dbUrl": "./database.sqlite",
"port": 4987
}
SQLite
{
"dialect": "sqlite",
"dbUrl": "./database.sqlite"
}
PostgreSQL
{
"dialect": "postgresql",
"dbUrl": "postgresql://user:password@localhost:5432/database"
}
MySQL
{
"dialect": "mysql",
"dbUrl": "mysql://user:password@localhost:3306/database"
}
| Database | Status | Notes |
|---|---|---|
| SQLite | ✅ Full | No system SQLite or Python required |
| PostgreSQL | ✅ Full | No psql binary needed |
| MySQL | ✅ Full | No mysql client required |
| Option | Type | Default | Description |
|---|---|---|---|
dialect | string | sqlite | sqlite, postgresql, or mysql |
dbUrl | string | — | SQLite file path or DB connection string |
port | number | 4987 | Server port |
Studio doesn’t start
bun-sql-studio.json exists and contains valid JSONDatabase connection errors
Port already in use
port value in the config fileMIT
FAQs
Modern Bun SQL database studio
We found that bun-sql-studio demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.