Announcement of databoom JavaScript library

Dear friends,

We have implemented the first version of JavaScript librarу that facilitates development of JavaScript code working with databoom.space service.

The library allows you to store and retrieve data, execute queries to the database in a few lines of code. For example:


var pers = [{ name: 'John' }, { name: 'Jane' }]
pers[0].wife = pers[1];
pers[1].husband = pers[0];
 
// Create a connection to your databoom database
var db = databoom('http://samples.databoom.space', 'sandboxdb');
db.save('persons', pers); //save data even with cyclic links

More details can be found here: databoom JavaScript Guide.

Leave a comment