tablegraph
v0.1.1
Published
Visualize database tables and relations locally.
Downloads
18
Maintainers
Readme
TableGraph
Visualize your database schema as an interactive graph directly in your browser.
What it does
TableGraph connects to your database, reads schema metadata, and opens a local web interface where you can inspect tables, columns, and relationships visually.
Install
Global install
npm install -g tablegraphOr run with npx
npx tablegraph --driver postgres --url <connection-url>Usage
tablegraph --driver postgres --url postgresql://username:password@localhost:5432/db_nameThen open:
http://localhost:3001Example
tablegraph --driver postgres --url postgresql://postgres:postgres@localhost:5434/postgresVisualization
Supported drivers
- postgres
Notes
- Make sure your database is running and accessible
- Ensure your schema is initialized and contains tables
- TableGraph runs locally and serves the visualization in your browser
