[Vuejs]-Full CRUD app without a database possible?

0👍

I think you could store the information inside csv files or somehting like that, you would be recreating a database engine as MongoDB & create your own reader to find the info, or you could store the users info using local Storage,
However this would make your app very limited.

Here’s the link for the documentation of local storage

https://developer.mozilla.org/es/docs/Web/API/Window/localStorage

0👍

Well if you want to try out CRUD operations you can use free JSON APIs like http://jsonplaceholder.typicode.com/ or
https://mockfirst.com/

where you can create, read, update and delete data using various api end points. It is better to go this way first then you could move on to updating a JSON file.


(UPDATE)

You can use https://jsonbin.io/

Here you can place your own data and use it as an API.

Leave a comment