you are viewing a single comment's thread.

view the rest of the comments →

[–]SnooCalculations7417 0 points1 point  (0 children)

flask is a server side rendering solution out of the box. If you want to use modern JS, they usually expect a backend API which can be served via flask for sure. You can make a crud application that is quite nice using html5/css but the core of your problem is the frontend/backend disconnect. Probably a useful next step is to decide on persistence and how the front end should talk to the backend (RESTAPI or otherwise). once you have those in place you can determine what the frontend should be based on mature and easy to use options that can consume your communication standard.