My FeedDiscussionsHeadless CMS
New
Sign in
Log inSign up
Learn more about Hashnode Headless CMSHashnode Headless CMS
Collaborate seamlessly with Hashnode Headless CMS for Enterprise.
Upgrade ✨Learn more
What is the simplest database to use?

What is the simplest database to use?

Sakari Niittymaa's photo
Sakari Niittymaa
·Feb 3, 2016

I must say that I'm not big fan of any database system yet :) It feels like most of them are too complicated for tiny projects. Mostly I've used MySql in my projects, but still it feels that there is too much for simple tasks where I just need to store ID, name, address, etc... And I always found myself struggling with my memory while trying to make some DB commands.

So is there NoSQL database systems that is incredible simple to use and setup? Maybe just one file with simple commands :) Something like:

create("database":"myDatabase");

add("name":"John Doe");

remove("name":"John Doe");

And that's it! Many times while concepting or in small projects I would only need small "incredible simple" database... So is there any that you can recommend?