Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
# MacOS file
.DS_Store

# Node modules
node_modules
/build


# Sveltekit temp folder
/.svelte-kit
/package

# Configurations
.env
.env.*
!.env.example
.vercel
.output
*.zip


# Build artifacts
*.zip
/build

# Test DB sqlite3
test.db
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@

## Porting of phpMyAdmin to Node.JS

nodeMyAdmin want to replace phpMyAdmin using Sveltekit instead of the old PHP.
A svelte-kit based alternative to phpMyAdmin with multi DB support

# Features

- MySQL/MariaDB support
- PostgreSQL beta support(Modify record is currently broken and don't change record, Search in table return all records, delete records is broken and delete all records BE CAREFUL, Add table don't work)
- MSSQL support
- SQLite3 support
- Creation of database
- Creation of tables
- View records or structure of tables, Add records, Search in tables, Truncate and Drop a table
Expand Down
Loading