Based on our record, Sinatra should be more popular than Django Ninja. It has been mentiond 40 times since March 2021. We are tracking product recommendations and mentions on various public social media platforms and blogs. They can help you identify which product is more popular and what people think of it.
> The only place I really see Django at large companies is as an api using DRF or something. This is not a bad thing. Using Django as an API backend is amazingly fast in terms of development time, especially with modern frameworks such as django-ninja [1]. Just use the built-in ORM to create models, write your endpoints, and use the built-in admin interface to play with the database if you don't have endpoints for... - Source: Hacker News / over 1 year ago
Personally, I also prefer django-ninja to DRF. Source: almost 2 years ago
Or just use django-ninja if you are writing an API. Maybe it's just because I came from teams that used tornado and then fastapi but it seems like everything in this article would be solved by using a simpler interface for writing endpoints. https://django-ninja.rest-framework.com/. - Source: Hacker News / almost 2 years ago
Also recommend Django-Ninja. It basically reimplements fastapi's type and decorator-based API construction, but embedded directly in django so you have access to django's ORM and middleware library. Source: about 2 years ago
A good compromise I have found is to use Django Ninja [1]. It is inspired by FastAPI, so it has a lot of the nice things like the automatically generated Swagger/OpenAPI docs, as well as having routers as decorators, and using python types for automatic serialization. While I think FastAPI is great in its first class async support, Django has the Django ORM, plus Django Admin, which for me have been indisposable.... - Source: Hacker News / about 2 years ago
Yeah, I believe Sinatra https://sinatrarb.com/ or Padrino https://padrinorb.com/ inspired Hono. So you are back to Ruby ;). - Source: Hacker News / 6 months ago
Now because we are using Sinatra as our server, we would need a way to dynamically define new endpoints from the file. Sinatra is a DSL for quickly creating web applications in Ruby with minimal effort. - Source: dev.to / 6 months ago
Something like https://sinatrarb.com/ for rust would be cool. - Source: Hacker News / 7 months ago
While Ruby is not this famous anymore, I still wanted the stack in my architecture. I eschewed Ruby on Rails in favor of the leaner Sinatra framework. I use sequel for database access. The dynamic nature of the language was a bit of a hurdle, which is why it took me more time to develop my service than with Go. - Source: dev.to / 11 months ago
Sinatra is a lightweight web application framework written in Ruby. It provides a simple and easy-to-use syntax for building web applications. The framework focuses on being minimalistic, allowing developers to quickly create web applications without having to deal with a lot of the boilerplate code and relatively rigid way of doing things that accompany larger and more popular frameworks like Rails. - Source: dev.to / about 1 year ago
FastAPI - FastAPI is an Open Source, modern, fast (high-performance), web framework for building APIs with Python 3.6+ based on standard Python type hints.
Ruby on Rails - Ruby on Rails is an open source full-stack web application framework for the Ruby programming...
Tastypie - Tastypie is a webservice API framework for Django.
ASP.NET - ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS and JavaScript.
ExpressJS - Sinatra inspired web development framework for node.js -- insanely fast, flexible, and simple
Flask - a microframework for Python based on Werkzeug, Jinja 2 and good intentions.