icon PluriDB
Browser
React
Angular
Node
Browser
on
SQL
MongoDB
JSON
GraphQL
SQL
The flexible database for your frontend
Scroll down to see more...
Use the syntax that you already know
pluriDB.modules.sql(
    `Select * from students where age = 4`
);
SQL
pluriDB.modules.mongo.students.find({
    "age " :  4
});
MongoDB
You can even use them interchangeably!
Scroll down to see more...
Use it on your browser or in node
npm i pluridb
npm i pdbm-mongodb
npm i pdbm-sql
NPM
https://cdn.jsdelivr.net/npm/pluridb@latest/PluriDB.js
https://cdn.jsdelivr.net/npm/pdbm-mongodb@latest/
https://cdn.jsdelivr.net/npm/pdbm-sql@latest/
CDN
You can also download it directly from source
Scroll down to see more...
Easy to use
const PluriDB require('PluriDB');
const mongoModule require('pdbm-mongodb');
PluriDB.loadModule(mongoModule);
Load the modules
const pluriDB = new PluriDB('test');
pluriDB.init();
pluriDb.modules.mongodb.student.insert({ name:"Jhon", age:12 });
pluriDb.modules.mongodb.student.find({ "age " :  4 });
And start the database
For more information visit our live demo or our documentation
Made by @dandimrod