Real-Time Data
Hasura provides built-in support for GraphQL subscriptions, allowing you to easily implement real-time data updates in your applications.
Auto-Generated APIs
With Hasura, you can instantly generate a fully-functional, scalable GraphQL API from your existing databases without writing any code.
Authorization and Authentication
Hasura provides granular authorization controls and integrates well with various authentication services, helping to secure your data access.
Microservices & Event Triggers
Hasura allows you to create event-driven architectures by allowing you to trigger webhooks based on specified database events.
Scalability
Designed for performance, Hasura can handle large-scale applications by optimizing database queries and offering load-balancing capabilities.
Multi-Data Source Support
Hasura can connect to multiple data sources and databases, making it a versatile choice for complex architectures.
Developer Productivity
The tool significantly reduces the time required for backend development, allowing developers to focus on building frontend features and improving user experience.
Community and Support
Hasura has a growing community and offers comprehensive documentation, which can be invaluable for troubleshooting and getting the most out of the platform.
We have collected here some useful links to help you find out if Hasura is good.
Check the traffic stats of Hasura on SimilarWeb. The key metrics to look for are: monthly visits, average visit duration, pages per visit, and traffic by country. Moreoever, check the traffic sources. For example "Direct" traffic is a good sign.
Check the "Domain Rating" of Hasura on Ahrefs. The domain rating is a measure of the strength of a website's backlink profile on a scale from 0 to 100. It shows the strength of Hasura's backlink profile compared to the other websites. In most cases a domain rating of 60+ is considered good and 70+ is considered very good.
Check the "Domain Authority" of Hasura on MOZ. A website's domain authority (DA) is a search engine ranking score that predicts how well a website will rank on search engine result pages (SERPs). It is based on a 100-point logarithmic scale, with higher scores corresponding to a greater likelihood of ranking. This is another useful metric to check if a website is good.
The latest comments about Hasura on Reddit. This can help you find out how popualr the product is and what people think about it.
A few years back, I decided to replace our spreadsheet-based host and service registries with a proper, Web-based asset registry. It took us a few days to hack together a simple system that we could use to track our infrastructure elements. It was not a big project -- just a simple app backed by a database, Hasura, and a React frontend. Since we were already using OpenID for authentication, it was easy for our... - Source: dev.to / about 1 year ago
Hasura is a neck-to-neck competitor to Supabase as a BaaS, but with a crucial difference: its GraphQL-first approach. Unlike Supabase, Hasura doesn't bundle database services, allowing it to work with virtually any database including Supabase's own Postgres, Neon, and others. - Source: dev.to / over 1 year ago
Hasura and PostGraphile lead the PostgreSQL GraphQL landscape. Hasura provides real-time subscriptions and a powerful permissions system, while PostGraphile offers deep PostgreSQL integration and excellent performance for complex queries. - Source: dev.to / over 1 year ago
Here is an example data schema we get for a query using Hasura and GraphQL-Codegen. - Source: dev.to / almost 2 years ago
Hasura is a great tool. I was worried about a few things such as huge RAM consumption, excessive focus on new features and functions despite many outstanding issues, long time rewrite of the server in Rust, etc... - Source: dev.to / almost 2 years ago
Hasura has commercial use: https://hasura.io/. - Source: Hacker News / about 2 years ago
> 2. ORMs do not hide SQL nastiness. This is certainly true! I mean: ORMs are now well known to "make the easy queries slightly more easy, while making intermediate queries really hard and complex queries impossible". I think the are of ORMs is over. It simply did not deliver. If a book on SQL is --say-- 100 pages, a book on Hibernate is 400 pages. So much to learn just to make the easy queries slightly easier to... - Source: Hacker News / about 2 years ago
Another strategy is to model access control declaratively and enforce it in the application layer. ZenStack (built above Prisma ORM) and Hasura are good examples of this approach. The following code shows how access policies are defined with ZenStack and how a secured CRUD API can be derived automatically. - Source: dev.to / over 2 years ago
Today, this ecosystem is going strong with new providers like Hasura, AppWrite and Supabase powering millions of projects. There are a few reasons people choose this style of hosting, especially if they are more comfortable with frontend development. BaaS lets them set up a database in a secure way, expose some business logic on top of the data, and connect via a dev-friendly SDK from their app or website code to... - Source: dev.to / over 2 years ago
Hi! If youโve ever thought about something like using GraphQL for something like this.. You might like Hasura. (Obligatory I work for Hasura) Weโve got an OpenAPI import and you can setup cron-jobs or one-off jobs and do things like load in headers from the environment variables to pass through. There isnโt currently an easy journey for chaining multiple calls together without writing any code at all, but you can... - Source: Hacker News / over 2 years ago
Hasura.io โ Hasura extends your existing databases wherever it is hosted and provides an instant GraphQL API that can be securely accessed for web, mobile, and data integration workloads. Free for 1GB/month of data pass-through. - Source: dev.to / over 2 years ago
Hasura is an open-source real-time GraphQL API server with a strong authorization layer on your database. You can subscribe to database events via webhooks. It can combine multiple API servers into one unified graphQL API. Hasura is a great tool to build any CRUD GraphQL API. Hasura does not have any authentication mechanisms; e.g., you need an auth server to handle sign-up and sign-in. - Source: dev.to / over 2 years ago
I built that repo to share some techniques behind the Hasura engine. Do check that out if you'd like to branch out a bit from your initial requirements; everything is declaratively defined in metadata, it is not a node/golang solution. https://hasura.io/. Source: almost 3 years ago
Postgraphile https://postgraphile.org/ Hasura https://hasura.io/ Examples of "batteries included" GraphQL. Combine with a type generator for the language of your choice (eg. https://the-guild.dev/graphql/codegen), and you've got your client interface to avoid any type errors. Each comes with a GraphiQL UI for access out of the box as well. It's more turnkey than any REST solutions I've seen, that's for sure. For... - Source: Hacker News / almost 3 years ago
Https://hasura.io/ Stop writing GraphQL resolvers by hand, especially if you're working off of a relational database model. - Source: Hacker News / almost 3 years ago
For those, who are new to Hasura - Hasura is a Data API platform that gives instant GraphQL and REST APIs for all your data sources including MariaDB. It also comes with built-in Authorization. Source: about 3 years ago
- Hasura Remote Schema (https://hasura.io/blog/tagged/remote-schemas/) If you want more control over the web API and you were going to fetch the data within your Python back-end and process it there, for some use-cases (not all, but some), there are options: - pg_http (https://github.com/pramsey/pgsql-http) Life is about trade-offs. Doing the work in SQL is not... - Source: Hacker News / about 3 years ago
Https://hasura.io/ is pretty good, it offers more than CRUD, but does CRUD very well by default. I use it as a backend in one of my side hustles. - Source: Hacker News / about 3 years ago
> but nobody does it for a reason Not quite accurate, theres a whole class of products that do this: Https://firebase.google.com/ Https://supabase.com/ Https://hasura.io/. Source: about 3 years ago
Performant Chat Server - Hasura (you don't need to code, so it's super quick to get a basic chat up and running). Source: over 3 years ago
There's https://hasura.io/ that's supposed to be getting MongoDB support Soon(tm). Source: over 3 years ago
Do you know an article comparing Hasura to other products?
Suggest a link to a post with product alternatives.
Is Hasura good? This is an informative page that will help you find out. Moreover, you can review and discuss Hasura here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.