Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
The MongoDB Binders plugin facilitates the seamless integration of MongoDB and Joget. This integration currently utilises few plugin types:
MongoDB is an object-oriented, simple, dynamic, and scalable NoSQL database. It is based on the NoSQL document store model.
The data objects are stored as separate documents inside a collection — instead of storing the data into the columns and rows of a traditional relational database.
With this integration plugins, you can now store and load data from form, datalist, and grid.
Plugins Available in the Bundle:
MongoDB Data List Filter
This plugin bundle is compatible with Joget DX 8.
Upon successful integration, Joget will be able to connect to MongoDB to store and retrieve data.
Figure 1: Example of successful integration
Install MongoDB Community Edition on Linux/MacOS/Windows or with docker.
(Referring to Install MongoDB Community Edition - MongoDB Manual v7.0.
Start and access MongoDB from your shell
mongosh
(Referring to Welcome to MongoDB Shell (mongosh) - MongoDB Shell)
After connecting to the shell, create a new database.
use jwdbtest
(Referring to MongoDB mongosh Create Database (w3schools.com))
Create a new collection under the database.
db.createCollection("posts")
(Referring to MongoDB mongosh Create Collection (w3schools.com))