An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        


Mongodb Mobile Client


logo


GitHub


GitHub repo size

## 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 |
| ---------------------------------------------- | ---------------------------------------------- |
| ![connectionPage01](docs/connectionPage01.jpg) | ![connectionPage02](docs/connectionPage02.jpg) |

| CollectionPage | CreateCollection |
| ------------------------------------------ | ---------------------------------------------- |
| ![collectionPage](docs/collectionPage.jpg) | ![createCollection](docs/createCollection.jpg) |

| DropCollection | DatabaseList |
| ------------------------------------------ | -------------------------------------- |
| ![dropCollection](docs/dropCollection.jpg) | ![databasePage](docs/databasePage.jpg) |

| DocumentPage | InsertDocument |
| -------------------------------------- | ------------------------------------------ |
| ![documentPage](docs/documentPage.jpg) | ![insertDocument](docs/insertDocument.jpg) |

| Search | Search |
| ------------------------------------ | ------------------------------------ |
| ![searchEmpty](docs/searchEmpty.jpg) | ![searchValue](docs/searchValue.jpg) |

## 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 🏁👍