PluriDB
on
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` );
pluriDB.modules.mongo.students.find({ "age " : 4 });
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
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/
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);
const pluriDB = new PluriDB('test'); pluriDB.init(); pluriDb.modules.mongodb.student.insert({ name:"Jhon", age:12 }); pluriDb.modules.mongodb.student.find({ "age " : 4 });
For more information visit our live demo or our documentation
Made by @dandimrod