dbnexus 0.1.3 β 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -10
- package/dist/api.js +1121 -474
- package/dist/cli.js +25 -4
- package/dist/index.js +1 -1
- package/dist/web/assets/index-CwT8c2Bw.js +379 -0
- package/dist/web/index.html +1 -1
- package/package.json +1 -1
- package/dist/web/assets/index-DAEjPp4I.js +0 -379
package/README.md
CHANGED
|
@@ -11,10 +11,12 @@
|
|
|
11
11
|
- π **Multiple Databases** - PostgreSQL, MySQL, MariaDB, SQLite
|
|
12
12
|
- π **Schema Sync** - Compare and migrate schemas between databases
|
|
13
13
|
- π **Data Sync** - Synchronize table data with conflict resolution
|
|
14
|
-
-
|
|
14
|
+
- πΊοΈ **Schema Diagram** - Visual database schema editor with drag-and-drop
|
|
15
|
+
- π **FK Navigation** - Click foreign key values to query referenced rows
|
|
15
16
|
- π **Query History** - Track and replay queries
|
|
16
17
|
- π **Secure** - Encrypted credentials with AES-256-GCM
|
|
17
18
|
- π‘οΈ **Safety First** - Production guardrails for dangerous queries
|
|
19
|
+
- π **Auto-Discovery** - Scan for databases via ports, Docker, env files
|
|
18
20
|
|
|
19
21
|
## Installation
|
|
20
22
|
|
|
@@ -82,17 +84,20 @@ DBNEXUS_DATA_DIR=/custom/path dbnexus
|
|
|
82
84
|
- Organize connections into projects and groups
|
|
83
85
|
- Test connection health
|
|
84
86
|
- Encrypted credential storage
|
|
87
|
+
- Auto-discover databases via port scanning and Docker
|
|
85
88
|
|
|
86
89
|
### Query Editor
|
|
87
90
|
|
|
88
91
|
- Execute SQL queries with syntax highlighting
|
|
89
92
|
- View results in a data grid
|
|
90
93
|
- Edit data inline
|
|
94
|
+
- **Click FK values to navigate to referenced rows**
|
|
91
95
|
- Query history and saved queries
|
|
92
96
|
|
|
93
97
|
### Schema Management
|
|
94
98
|
|
|
95
99
|
- Browse tables, columns, indexes, and foreign keys
|
|
100
|
+
- Visual schema diagram with drag-and-drop
|
|
96
101
|
- Compare schemas between databases
|
|
97
102
|
- Generate migration SQL
|
|
98
103
|
- Apply schema changes
|
|
@@ -104,13 +109,6 @@ DBNEXUS_DATA_DIR=/custom/path dbnexus
|
|
|
104
109
|
- Bulk data operations
|
|
105
110
|
- Dump and restore databases
|
|
106
111
|
|
|
107
|
-
### Schema Diagram
|
|
108
|
-
|
|
109
|
-
- Visual database schema editor
|
|
110
|
-
- Drag-and-drop table relationships
|
|
111
|
-
- Create and modify tables visually
|
|
112
|
-
- Export diagrams
|
|
113
|
-
|
|
114
112
|
## Requirements
|
|
115
113
|
|
|
116
114
|
- Node.js 18 or higher
|
|
@@ -143,7 +141,6 @@ rm -rf ~/.dbnexus
|
|
|
143
141
|
|
|
144
142
|
## Documentation
|
|
145
143
|
|
|
146
|
-
- [Full Documentation](https://docs.dbnexus.dev)
|
|
147
144
|
- [GitHub Repository](https://github.com/akademskig/dbnexus)
|
|
148
145
|
- [Issue Tracker](https://github.com/akademskig/dbnexus/issues)
|
|
149
146
|
|
|
@@ -157,7 +154,6 @@ MIT Β© DB Nexus Team
|
|
|
157
154
|
|
|
158
155
|
## Support
|
|
159
156
|
|
|
160
|
-
- π§ Email: <admin@dbnexus.dev>
|
|
161
157
|
- π Issues: [GitHub Issues](https://github.com/akademskig/dbnexus/issues)
|
|
162
158
|
- π¬ Discussions: [GitHub Discussions](https://github.com/akademskig/dbnexus/discussions)
|
|
163
159
|
|