jsdb icon indicating copy to clipboard operation
jsdb copied to clipboard

A transparent, in-memory, streaming write-on-update JavaScript database for Small Web applications that persists to a JavaScript transaction log.

Results 8 jsdb issues
Sort by recently updated
recently updated
newest added

For a browser-only use of JSDB, how can I use JSDB without a server and store to localstorage ? and further to this, can I still use a server but...

This all sounds nice to store data in `.js` files directory, however, is not this quite dangerous when you think about it? ## The problem Because as soon as you...

> looks like this was a pre-release remnant; cf. > b1443db6860815ef9b17f5466db646a2a7fdfc21

In the first example show deletion as well.

I've added JSDB to my encyclopedia of databases: https://dbdb.io/db/jsdb Do you have a logo that I can include?

Use case: If we assume a JSDB table initialized as ``` db.cars = [ { make: "Mazda", model: "Miato", color: "red", year: 1992 }, { make: "GMC", model:" Timmy", color:...

A transaction is a series of updates on a table that are either all persisted together or are not persisted at all. They enable a table to have [atomicity](https://en.wikipedia.org/wiki/Atomicity_(database_systems)). In...

![image](https://user-images.githubusercontent.com/41798/188633063-43862b15-6e98-4714-bd33-4ea2b103af9b.png)