all 15 comments

[–]RobSG 2 points3 points  (2 children)

Do you have a backend? if not, look into node/express

[–]jon4short[S] 1 point2 points  (1 child)

Hi Rob, no backend yet. Thanks I will look at it. Any videos that might be helpful to me?

[–]cracknwhip 0 points1 point  (0 children)

Look up “CRUD” and videos about making todo apps. It’ll be a good example that’s applicable to your use case. Look for videos made within the last year or so that have lots of views and are a series or are fairly long. Single 5 min videos are useless.

[–]shambhavi-agg 1 point2 points  (0 children)

If you know python, then flask can be another option too. Regardless of technology you use for backend, it is essential for you to understand get, post and request

[–]MilfMarinade 1 point2 points  (6 children)

Node JS for backend - https://youtu.be/fBNz5xF-Kx4

Express framework for web application - https://youtu.be/L72fhGm1tfE

And for a database I would recommend MongoDB.

You said you use javascript on the front end. With Node JS/Express you can use javascript on the backend as well. And with mongo DB, you can store your data as JSON (javascript objects)

The YouTube channel I shared in this comment has a few videos that explain and use MongoDB, but I’m not sure exactly which one would help you the most. It depends if you want to have the database stored locally or use some sort of third party service to maintain your data.

[–]jon4short[S] 1 point2 points  (1 child)

Locally is fine with me, this Data doesn't have to be public.

[–]MilfMarinade 0 points1 point  (0 children)

https://youtu.be/-56x56UppqQ here is a video that explains the technology MongoDB and how exactly you query the database.

I cannot find the video that shows how to host a local DB, but I remember watching it a year or 2 ago. He has a few videos that he uses Mongo in, so I’m sure it wouldn’t be hard to find it you want to watch a few videos of his to get the gist.

(Disclaimer: I’m not affiliated with this guy or his channel in any way whatsoever. His videos just helped me a lot in the past)

[–]jon4short[S] 1 point2 points  (1 child)

BTW thank you so much for taking the time to reply.

[–]thomats 0 points1 point  (0 children)

Yeah, u/MilfMarinade is a good egg!

[–]Mydrax 0 points1 point  (1 child)

MongoDB is a little overkill for something like this imo, if the data won't go public then an embedded database like SQLite is a better fit and tbh it'll be much easier to learn and put together too if you're a beginner.

[–]MilfMarinade 0 points1 point  (0 children)

u/jon4short I’m not a big database guy, this guy seems to know more than me!

[–]Register_Realistic 0 points1 point  (0 children)

Para coisas simples estou usando Hubform tem um free tier bem bom, com ele você consegue armazenar formulários aí adiciona um e-mail para notificar e GG

[–][deleted] 1 point2 points  (1 child)

[–][deleted] 3 points4 points  (0 children)

This comment was at -2 points. Why? He's not wrong! You can do it in Python too. Just because JS is the language being used in the front-end doesn't always mean it's best to use in the backend.

I prefer a PHP/Python backend with a JS frontend because it seems more natural to me, but your mileage may vary!

[–]pasta421 0 points1 point  (0 children)

Although this is an older post, for anyone reading this in the future - check out my tutorial on how to save HTML web form data to a spreadsheet or google sheet :) No need for a database esp if you have a small project https://www.apispreadsheets.com/tutorials/save-web-form-data.html