What does HackerNews think of nedb?
The JavaScript Database, for Node.js, nw.js, electron and the browser
I still think Kong did a good job in crafting the product. I started using Insomnia in my previous company 3 years ago and our team loved it.
What happened recently felt a little bit like the Unity fiasco (of course, in a much much smaller scale). Though as a user I would say Kong had taken a bad turn, as a dev I'm still grateful to them for open-sourcing such a fantastic product.
One of the reasons I forked Insomnia was because it uses React & Electron, both of which I'm quite familiar with. And I think many parts of Insomnia are quite nicely written overall (but unfortunately things like nedb that was used is no longer maintained https://github.com/louischatriot/nedb so it's probably wise to swap out at some point)
I like the small codebase with no dependencies - I imagine it's easy to start using. Also appreciate the extensive query interface and documentation.
It reminds me of NeDB in Node.js world, which has proven its worth to me on several occasions when I needed a simple JSON-based database for a small(ish) audience, with mostly read operations (which are served from memory). They're running for literally years with no issue at all.
Could you post an issue on https://github.com/louischatriot/nedb with your environment details and how to reproduce this?
* request - https://github.com/mikeal/request
* async - https://github.com/caolan/async
* cheerio - https://github.com/cheeriojs/cheerio
If you want to use a non-embedded database, you have to build your own installer, though.
The solutions offered by the chromium part (localStorage, indexedDB) could be worth a look, too. But i have no experience with them when using bigger amounts of data.
For example, I'm writing a pure JS database (https://github.com/louischatriot/nedb), and using indexing I was able to speed it up hundreds fold. That's clearly not something I could have done without knowing about self-balancing binary search trees.
I also think that knowing algorithms does make you a better programmer, even if you don't use them on a daily basis.
This is useful for small projects that don't need the power of a behemoth like MongoDB and want to be installable by a simple git-clone + npm install
I am very interested in feedback on it! https://github.com/louischatriot/nedb