back
3 comments
What's the usecase for JSDB?
It's essentially a NoSQL database for small sites where you don't need a full-fledged database. No schemas and migrations.

As mentioned, you can query it using Javascript directly in Node. It is all in-memory, so, it's fast. Takes care of persistence automatically.

Also, since the querying is directly how you would search in an Javascript array, there's no SQL or ORM overhead.

I found it interesting as it seemed very easy to implement and use.

[0]: https://github.com/small-tech/jsdb/blob/master/README.md#lim...

For fun and learning ?