Home > Back-end >  How should I store the data of the notes?
How should I store the data of the notes?

Time:07-28

I made this lite version google keep app in react and was wondering how you personally would go about storing the notes data, so that anyone entering the page sees the same notes, and have the same editing capabilities(deleting the notes).

Right now it only stores till refreshed. https://audunlk.github.io/googlekeep/

Thank you.

CodePudding user response:

If you know how to work with REST you could try Firebase.

If you want a simple way, json would do the trick too. But if you want to have user auth at a later point you can rely on the firebase auth and would not need to implement your own.

CodePudding user response:

Some JSON fill to store data and later edit it or delete it. or firebase real-time database

  • Related