Discuss Scratch
- Discussion Forums
- » Advanced Topics
- » [Survey] What is your favorite backend web framework
- ajskateboarder
-
1000+ posts
[Survey] What is your favorite backend web framework
I am just asking for opinions because I am curious what the AT community uses for making web APIs. So, what is your favorite backend framework?
And as I said, please don't base your choice off popularity or other statistics (like npm or PyPi downloads), just your own opinion.
By the way, my favorite is FastAPI because it supports automatic OpenAPI schema generation (for making route documentation and strongly-typed API clients) as well as ASGI.
And as I said, please don't base your choice off popularity or other statistics (like npm or PyPi downloads), just your own opinion.
By the way, my favorite is FastAPI because it supports automatic OpenAPI schema generation (for making route documentation and strongly-typed API clients) as well as ASGI.
Last edited by ajskateboarder (Dec. 6, 2022 14:24:36)
- Chirover
-
78 posts
[Survey] What is your favorite backend web framework
Depends on your use case. Large scale or small API?
- ScratchcatandGobo
-
1000+ posts
[Survey] What is your favorite backend web framework
Replit is the best paid one, and if you have the Raspberry pi that will work pretty well too!
- davidtheplatform
-
500+ posts
[Survey] What is your favorite backend web framework
I would use flask with python. Its pretty easy to set up and nothing I would make would need very good performance
- yeeter2001
-
100+ posts
[Survey] What is your favorite backend web framework
Flask is easy to set up but probably not amazing for production. I've never really used it myself, but if I were you I'd use Django.
- gilbert_given_189
-
1000+ posts
[Survey] What is your favorite backend web framework
I've been using Express lately. It's a bit like a blank canvas but it works for me. (although the fact that it still uses CommonJS makes me kinda mad.)
I might try Flask some day.
I might try Flask some day.
Last edited by gilbert_given_189 (Dec. 6, 2022 07:36:32)
- Chiroyce
-
1000+ posts
[Survey] What is your favorite backend web framework
Flask is easy to set up but probably not amazing for production
Flask is a WSGI application. A WSGI server is used to run the application, converting incoming HTTP requests to the standard WSGI environ, and converting outgoing WSGI responses to HTTP responses.— https://flask.palletsprojects.com/en/2.2.x/deploying/
So if you use the right WSGI server it should be all fine.
Django is great for large scale projects, since it has a lot of utilities/tools right built into it. if I were you I'd use Django.
- NFlex23
-
1000+ posts
[Survey] What is your favorite backend web framework
I love using Express because of its modularity with middleware. Deno's Oak framework (and others) look great as well; I'll have to try them soon.
- lolecksdeehaha
-
1000+ posts
[Survey] What is your favorite backend web framework
express FTW, but more like a library than a framework I love using Express because of its modularity with middleware. Deno's Oak framework (and others) look great as well; I'll have to try them soon.
- Redstone1080
-
1000+ posts
[Survey] What is your favorite backend web framework
I like using Flask with Jinja, and Express is great too. I've barely dipped my toes in the water with SvelteKit, but it looks amazing.
- uwv
-
1000+ posts
[Survey] What is your favorite backend web framework
I use mostly fastify, it's faster than Express while still being an extremely simple api
- davidtheplatform
-
500+ posts
[Survey] What is your favorite backend web framework
i could tell by the logo that its a rust library actix fo sho
- uwv
-
1000+ posts
[Survey] What is your favorite backend web framework
personally I use fastify
- WojtekGame
-
1000+ posts
[Survey] What is your favorite backend web framework
On Node:
1. Express
2. Webpack (because of create-react-app)
On Python:
1. Flask, because that's the framework i only know.
1. Express
2. Webpack (because of create-react-app)
On Python:
1. Flask, because that's the framework i only know.
- NFlex23
-
1000+ posts
[Survey] What is your favorite backend web framework
Webpack is a bundler, not a backend framework. Not really even close. Webpack
- Discussion Forums
- » Advanced Topics
-
» [Survey] What is your favorite backend web framework