A node JS lib to talk with PolygonDB simply
Example basic use
const ploycon = require('polyconjs');
const db = new ploycon("localhost:8000","Better_Password");
main()
async function main(){
await db.open()
console.log(await db.getschema('ExampleDB'))
}
Read our WIKI for all functions and usage