-1

How can I fetch and send data without a backend server?

I have taken on as a project to create a login with JavaScript. Does it make sense to create my own JSON file? Where do I store data with using localstorage?

1 Answers1

1

I'm pretty sure if you store passwords on the client side, without authentication from the backend, then the client can just search to find the password stored on their side. If you don't care about that, you can store their data as far as I know, in cookies or on their local storage.

legendsmnd
  • 21
  • 1
  • 1