All Projects → SamuelTallet → MongoDB-PHP-GUI

SamuelTallet / MongoDB-PHP-GUI

Licence: other
Open-source graphical interface for MongoDB database. Written in PHP, JavaScript, HTML & CSS.

Programming Languages

javascript
184084 projects - #8 most used programming language
PHP
23972 projects - #3 most used programming language
CSS
56736 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to MongoDB-PHP-GUI

cms
🛠️ Simple smart CMS for Nette and Vue.js
Stars: ✭ 12 (-88%)
Mutual labels:  administration-interface
dsadmin
Google Cloud Datastore Emulator Administration UI
Stars: ✭ 32 (-68%)
Mutual labels:  administration-interface
viur-vi
Visual administration interface for ViUR as web-app, with the ability to generate its input masks and data structures automatically from the underlying data model.
Stars: ✭ 18 (-82%)
Mutual labels:  administration-interface
laravel-admin
Laravel Admin panel with theme , modules ,artisan commands and helper classess.Laravel admin boilerplate with theme and modules
Stars: ✭ 22 (-78%)
Mutual labels:  administration-interface

Free MongoDB GUI powered by PHP

Visually administrate your MongoDB database. Create, read, update & delete your documents.
Query your MongoDB database with a relax JSON syntax, regular expressions & SQL statements.
Autocompletion is available for collection fields, MongoDB & SQL keywords via key shortcuts.
Export documents to JSON. Import documents from JSON. Manage indexes. Manage users, etc.

Screenshots

MongoDB PHP GUI - Visualize Database

MongoDB PHP GUI - Query Documents

Installation

Docker (PHP built-in server)

  1. In a case of an upgrade, run docker pull samueltallet/mongodb-php-gui
  2. Always run docker run --add-host localhost:172.17.0.1 --publish 5000:5000 --rm samueltallet/mongodb-php-gui
  3. Open your browser at this address: http://127.0.0.1:5000/ to access GUI.

Apache HTTP server

  1. Clone current repository in a folder served by Apache.
  2. Be sure to have PHP >= 7.3 with MongoDB extension enabled.
  3. Check that rewrite_module module is enabled in your Apache configuration.
  4. Be sure to have AllowOverride All in your Apache (virtual host) configuration.
  5. Run composer install at project's root directory to install all PHP dependencies.
  6. Optionnaly, if you want to query DB with SQL, you must have Java JDK installed.
  7. Open your browser at Apache server URL to access GUI.

Usage

Query Syntax

Relaxed JSON

MongoDB PHP GUI supports a relaxed JSON syntax. In practice, this query:

city: New York

Will produce same result that:

{ "city": "New York" }

Regular Expressions

Imagine you want to find all the US cities starting with "San An". This query:

city: /^San An/

Will output:

  • San Antonio (FL)
  • San Angelo (TX)
  • ...

SQL Statements

If Java JDK is installed, you can query MongoDB with SQL statements such as:

SELECT * FROM Cities WHERE state = "CA"

Key Shortcuts

Ctrl + Space Autocomplete the query
Ctrl + * Count doc(s) matching the query
Ctrl + Enter Find doc(s) matching the query

Credits

This GUI uses Limber, Capsule, Font Awesome, Bootstrap, CodeMirror, jsonic, JsonView, MongoDB PHP library, vis.js and SQL to MongoDB Query Converter. Leaf icon was made by Freepik from Flaticon.

Funding

If you find this GUI useful, donate at least one dollar to support its development. Thank you to all! ❤️

Copyright

© 2022 Samuel Tallet

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].