Novice inquiry: I have created a basic draggable to-do list that saves its state in a single object containing tasks, containers, and index - currently, it is being stored in local storage. I am now delving into server-side development using express and node.js, but I am unsure of where to store this object. Would using a database like mongodb be the best solution...or is there a simpler alternative? Can I maintain the project as static and have the server side solely handle JSON requests and responses? Appreciate any guidance!