📜 ⬆️ ⬇️

Announcement of JavaScript library databoom

Dear colleagues, we have implemented the first version of the JavaScript library for working with the databoom.space service .

The library allows you to save and receive data in a few lines of code, to perform queries to the database. 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 .

')

Source: https://habr.com/ru/post/262671/


All Articles