Light weight front end wrapper to an API?
Best frontend technology to interact with a REST API for a Javascript noob?
What do you use to quickly create a frontend for your api?
Do frontend devs get a say in APIs, or do backend devs just hand them over?
Videos
Not sure if this is the best place to ask, I've been out of the front end world for a while, but I know there are a ton of frameworks in the space these days. I have an API that I'd like to expose via a very simple UI. Is there a framework that's built for for this use case? Like, bare minimum stuff here. If I have an endpoint that returns json, I want a page that will simply executes that endpoint (with parameters) and then loops over the resulting json spitting out something decent looking. And if makes sense for the user to be able to click into one of the items listed, a way to link to a page with a parameter that would do the same. Something that's like a half step fancier than Swagger?
I feel really silly for describing it this way, and maybe the answer is just a basic/popular web framework for the language of my choice, but also maybe something like this exists? 😂 Thanks!
Hi
I'm currently working on a university project and have build a flask app which contains all of the backend logic required for the application.
Prior to beginning the project, I hoped that there would be a very simple way of converting the routes to API endpoints and then converting my Jinja2 templates (the app is currently set up as a non-REST API) so that they interact accordingly with the REST API. This does not appear to be as simple as I had thought.
My Javascript knowledge is very basic (I know some of the basic syntax - types, conditionals, iteration, functions etc.), but my research suggests that a frontend app built with a Javascript framework is pretty much the only/best solution to this problem.
I've looked at this Vue course: https://scrimba.com/playlist/pZ45Hz but it doesn't seem to go into a great deal of detail with information past the basics that is applicable to my project. The more popular Vue courses look to be many hours long and have Javascript knowledge as a prerequisite. The other frameworks such as React also appear to have a steeper learning curve.
I'm hoping that I can implement a solution for this project without having to put in 50-100 hours on Javascript and then a framework. I'm not sure whether this is possible?
Basically, I'm looking to get this very simple web app up and running without having to get caught up in too much detail right now.