Go to file
Jan Prochazka ed616130b8 fixes
2021-12-30 11:04:26 +01:00
.github Revert "upgrade to node 16" 2021-12-25 13:46:32 +01:00
.vscode #122 2021-05-27 14:25:20 +02:00
app electron - used version 13 (modules 89) as it seems to be supported by node-abi 2021-12-28 17:41:16 +01:00
docker Revert "upgrade to node 16" 2021-12-25 13:46:32 +01:00
img readme 2021-12-15 17:33:05 +01:00
integration-tests deploy - update fixed data works in test 2021-11-27 18:10:34 +01:00
packages fixes 2021-12-30 11:04:26 +01:00
patches removed unused packages 2021-12-22 16:34:34 +01:00
plugins better-sqlite version 2021-12-26 11:37:27 +01:00
test renamed dbgate packages, because of npmjs policy 2020-11-16 21:59:08 +01:00
.gitignore [ackaged plugins for electron optimalization 2021-05-20 10:22:08 +02:00
CHANGELOG.md changelog 4.4.4 2021-12-10 18:44:45 +01:00
fillNativeModules.js better-sqlite version 2021-12-26 11:37:27 +01:00
fillPackagedPlugins.js [ackaged plugins for electron optimalization 2021-05-20 10:22:08 +02:00
generatePadFile.js fix 2021-01-07 17:01:14 +01:00
LICENSE generate pad file 2021-01-07 16:29:01 +01:00
package.json v4.4.5-beta.24 2021-12-30 10:02:08 +01:00
prettier.config.js fix 2021-01-21 13:54:14 +01:00
README.md Revert "readme" 2021-12-15 17:46:00 +01:00
resetPackagedPlugins.js [ackaged plugins for electron optimalization 2021-05-20 10:22:08 +02:00
screenshot800.png screenshot 800x600 2021-01-21 17:53:52 +01:00
screenshot.png updated readme 2021-12-10 20:42:35 +01:00
setCurrentVersion.js query-splitter - documentation, publish 2021-06-03 07:40:35 +02:00
yarn.lock better-sqlite version 2021-12-26 11:37:27 +01:00

NPM version GitHub All Releases dbgate dbgate styled with prettier

DbGate - (no)SQL database client

DbGate is cross-platform database manager. It's designed to be simple to use and effective, when working with more databases simultaneously. But there are also many advanced features like schema compare, visual query designer, chart visualisation or batch export and import.

DbGate is licensed under MIT license and is completely free.

Supported databases

  • MySQL
  • PostgreSQL
  • SQL Server
  • MongoDB
  • SQLite
  • Amazon Redshift
  • CockroachDB
  • MariaDB

Features

  • Table data editing, with SQL change script preview
  • Edit table schema, indexes, primary and foreign keys
  • Compare and synchronize database structure
  • Light and dark theme
  • Master/detail views, foreign key lookups
  • Query designer
  • Form view for comfortable work with tables with many columns
  • JSON view on MongoDB collections
  • Explore tables, views, procedures, functions, MongoDB collections
  • SQL editor
    • execute SQL script
    • SQL code formatter
    • SQL code completion
    • Add SQL LEFT/INNER/RIGHT join utility
  • Mongo JavaScript editor, execute Mongo script (with NodeJs syntax)
  • Runs as application for Windows, Linux and Mac. Or in Docker container on server and in web Browser on client.
  • Import, export from/to CSV, Excel, JSON
  • Free table editor - quick table data editing (cleanup data after import/before export, prototype tables etc.)
  • Archives - backup your data in JSON files on local filesystem (or on DbGate server, when using web application)
  • Charts, export chart to HTML page
  • For detailed info, how to run DbGate in docker container, visit docker hub
  • Extensible plugin architecture

How to contribute

Any contributions are welcome. If you want to contribute without coding, consider following:

  • Tell your friends about DbGate or share on social networks - when more people will use DbGate, it will grow to be better
  • Write review on Slant.co or G2
  • Create issue, if you find problem in app, or you have idea to new feature. If issue already exists, you could leave comment on it, to prioritise most wanted issues.
  • Become a backer on Open collective

Thank you!

Why is DbGate different

There are many database managers now, so why DbGate?

  • Works everywhere - Windows, Linux, Mac, Web browser (+mobile web is planned), without compromises in features
  • Based on standalone NPM packages, scripts can be run without DbGate (example - CSV export )
  • Many data browsing functions based using foreign keys - master/detail, expand columns, expandable form view

Design goals

  • Application simplicity - DbGate takes the best and only the best from old DbGate, DatAdmin and DbMouse .
  • Minimal dependencies
    • Frontend - Svelte, socket.io
    • Backend - NodeJs, ExpressJs, socket.io, database connection drivers
    • JavaScript + TypeScript
    • App - electron
  • Platform independent - runs as web application in single docker container on server, or as application using Electron platform on Linux, Windows and Mac

How to run development environment

yarn
yarn start

If you want to make modifications in libraries or plugins, run library compiler in watch mode in the second terminal:

yarn lib

Open http://localhost:5000 in your browser

You could run electron app (requires running localhost:5000):

cd app
yarn
yarn start

How to run built electron app locally

This mode is very similar to production run of electron app. Electron app forks process with API on dynamically allocated port, works with compiled javascript files and uses compiled version of plugins (doesn't use localhost:5000)

cd app
yarn
yarn
yarn build:app:local
yarn start:app:local