PG Studio is a lightweight, browser-based graphical interface for PostgreSQL databases, built with Next.js. Current version 1.2.4 is stable with a simple setup: run 'npx pg-studio' and it auto-launches the UI on localhost:3000. It requires no global install and reads connection strings from environment variables like DB_URL, DATABASE_URL, or PG_URL. It differentiates from tools like pgAdmin by being a zero-config, single-command tool ideal for quick database browsing and querying. The project is open-source under MIT and welcomes contributions.
npm install pg-studioNo compatibility data collected yet for this library.
Run PG Studio directly without installation. Ensure a .env file with DB_URL or similar connection string exists in the current directory.
Create a .env file in the directory you run the command and set at least one of DB_URL, DATABASE_URL, PG_URL, POSTGRES_URL, PG_CONNECTION, or CONNECTION_STRING.
Add a valid connection string to .env, e.g., DB_URL=postgres://user:pass@localhost:5432/mydb
No dependency data recorded yet.