https://github.com/jamalianpour/mongo_mobile
MongoDB client for mobile with flutter
https://github.com/jamalianpour/mongo_mobile
dart flutter mongodb mongodb-client
Last synced: about 2 months ago
JSON representation
MongoDB client for mobile with flutter
- Host: GitHub
- URL: https://github.com/jamalianpour/mongo_mobile
- Owner: Jamalianpour
- License: mit
- Created: 2022-07-11T08:41:50.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-11T08:52:39.000Z (almost 3 years ago)
- Last Synced: 2023-04-10T21:03:23.459Z (about 2 years ago)
- Topics: dart, flutter, mongodb, mongodb-client
- Language: Dart
- Homepage:
- Size: 1.08 MB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Introduce
MongoDb Mobile is a free and open source client for mongodb database on android and ios platform write in flutter. due to flutter you can run this on desktop such as windows, linux and mac and web(not tested) but the target of this project is mobile.
## ✨ Features
- Connect to your mongodb with connection URI `mongodb://:@:`
- support username and password
- connect to specifics database by adding name to URI `mongodb://localhost:27017/dbname`- Connection history
- Error handlings
- Display list of database on a mongodb
- Display installed mongodb information (version, isStandalone, ...)
- Display list of collections and theres info (total count, indexes)
- Display documents with pagination
- Create collection
- Drop collection
- Insert new documents
- Search with query
- ...## 📸 Screenshots
| ConnectionPage | ConnectionPage |
| ---------------------------------------------- | ---------------------------------------------- |
|  |  || CollectionPage | CreateCollection |
| ------------------------------------------ | ---------------------------------------------- |
|  |  || DropCollection | DatabaseList |
| ------------------------------------------ | -------------------------------------- |
|  |  || DocumentPage | InsertDocument |
| -------------------------------------- | ------------------------------------------ |
|  |  || Search | Search |
| ------------------------------------ | ------------------------------------ |
|  |  |## Usage
There is two way to use mongo_mobile:
### 1. Install apk
Install by last released apk in [release page](https://github.com/Jamalianpour/mongo_mobile/releases).
### 2. Clone project
At first clone project:
```git
git clone https://github.com/Jamalianpour/mongo_mobile.git
```Then run with flutter command:
```sh
flutter run
```---
Feel free to fork this repository and send pull request 🏁👍