Platform Agnostic
Dapr is platform agnostic, which means it can run on any cloud or on-premise environment, allowing developers to build applications without worrying about the underlying infrastructure.
Language Neutral
Developers can build applications using any programming language that supports HTTP/gRPC, providing flexibility in choosing technologies that match their expertise or the project's requirements.
Microservices Ready
Dapr is designed to support the microservices architecture, providing building blocks like service invocation, state management, and publish/subscribe messaging, which simplify managing microservices at scale.
Extensible
Dapr supports extensible components and can be easily integrated with multiple services and custom extensions, enhancing functionality and adaptability in various environments and use cases.
Built-in Best Practices
Dapr encapsulates best practices for cloud-native application development, enabling developers to focus more on business logic than infrastructure concerns.
We have collected here some useful links to help you find out if Dapr is good.
Check the traffic stats of Dapr 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 Dapr 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 Dapr'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 Dapr 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 Dapr on Reddit. This can help you find out how popualr the product is and what people think about it.
A good example of this approach is Dapr (Distributed Application Runtime), it attempts to solve the developer experience by providing "building block" APIs via sidecars. - Source: dev.to / 5 months ago
Since I first laid eyes and hands on Dapr when it was created in 2019, I have been fascinated by the potential of building distributed applications with it. The Dapr team has been working hard to make it easier to build microservices and distributed systems ever since. Workflows had been added with release 1.15 and AI agent support started showing up in spring 2025. When I learned about Dapr workflows and agents... - Source: dev.to / 11 months ago
In modern cloud-native applications, observability isn't optionalโit's essential. When building distributed applications with Dapr (Distributed Application Runtime), monitoring becomes even more critical to ensure your services behave as expected. Thankfully, Dapr has built-in support for exposing metrics in Prometheus format, making it straightforward to integrate and monitor your applications. - Source: dev.to / about 1 year ago
We decided to use Azure Container Apps as a managed Kubernetes platform because it offers everything we need for our project, with acceptable limitations. During the process, we realised that Microsoft includes managed Dapr as part of the serviceโand we decided to use it. Why? I explain belowโand I still don't regret it. - Source: dev.to / about 1 year ago
In this blog, we will explore how the open-source Dapr (Distributed Application Runtime) can assist us in building reliable and secure distributed applications. Dapr provides a set of building blocks for common microservice patterns, such as service invocation (calling services), state management (handling data), and pub/sub messaging (publish/subscribe communication), which can significantly reduce the... - Source: dev.to / over 1 year ago
I've been playing with this thing recently called Dapr (you can blame @marcduiker for me finding out about the project). - Source: dev.to / almost 2 years ago
In the demo application architecture deployed into Azure Container Apps, we leverage Dapr for its distributed application runtime capabilities. Before diving into Dapr, let's refresh one of the design patterns called the Sidecar pattern, as Dapr is deployed as a sidecar. For more details, you can visit the Dapr website. - Source: dev.to / almost 2 years ago
The sidecar pattern in Kubernetes describes a single pod containing a container in which a main app sits. A helper container (the sidecar) is deployed alongside a main app container within the same pod. This pattern allows each container to focus on a single aspect of the overall functionality, improving the maintainability and scalability of apps deployed in Kubernetes environments. From gathering metrics to... - Source: dev.to / about 2 years ago
Dapr provides a set of building blocks that abstract concepts commonly used in distributed systems. This includes secured synchronous and asynchronous communication between services, caching, workflows, resiliency, secret management and much more. Not having to implement these features yourself eliminates boilerplate, reduce complexity and allows you to focus on developing your business features. - Source: dev.to / about 2 years ago
Diagrid Catalyst is a Developer API platform providing a brand-new approach to distributed application development. Using the Catalyst APIs, powered by the Dapr open source project, developers can overcome the complexity of rewriting common software patterns and achieve higher productivity by offloading infrastructure concerns from their code to Catalyst. - Source: dev.to / about 2 years ago
The following two examples are open-source projects maintained by Fermyon with contributions from companies like Microsoft and SUSE. The first is Spin, which allows us to use WebAssembly to create Serverless applications. The second, SpinKube, combines some of the topics I'm most excited about these days: WebAssembly and Kubernetes Operators :) The official website says, "By running applications in the Wasm... - Source: dev.to / over 2 years ago
Speaking of this has anyone had much experience with Dapr (https://dapr.io/) before? I always thought this was a particularly interesting approach from Microsoft where they use this pattern to essentially take the complexity of micro services and instead try and keep it as simple as a normal .NET application but (and I think this is the clever part) in both a vendor and language neutral way. But all of a sudden it... - Source: Hacker News / over 2 years ago
Azure Container Apps hosting of Azure Functions is a way to host Azure Functions directly in Container Apps - additionally to App Service with and without containers. This offering also adds some Container Apps built-in capabilities like the Dapr microservices framework which would allow for mixing microservices workloads on the same environment with Functions. - Source: dev.to / almost 3 years ago
Having containers is nice but everything (well ... Nearly everything ๐) gets better with Dapr as an outstanding tool for app development in the container-based area. Here we go what might be worth a look:. - Source: dev.to / almost 3 years ago
Anyone using or planing to use darp Distributed application platform runtime as a microservices platform? https://dapr.io/. Source: almost 3 years ago
A CNCF project, the Distributed Application Runtime (Dapr) provides APIs that simplify microservice connectivity. Whether your communication pattern is service to service invocation or pub/sub messaging, Dapr helps you write resilient and secured microservices. Essentially, it provides a new way to build microservices by using the reusable blocks implemented as sidecars. - Source: dev.to / almost 3 years ago
Dapr is a runtime that implements common patterns such as pub/sub, state storage, etc. It runs as a sidecar to your app. Your app then interfaces with it using an sdk or http calls to use said patterns instead of implementing those patterns directly yourself. Seems pretty cool to me, but you can find out more at https://dapr.io/. Source: about 3 years ago
I would like to build modules, either in a modular monolith style, or in a microservice style using DAPR and/or Tye. Source: about 3 years ago
Just heard about Dapr last week. Might be more than what you are asking, though but itโs probably worth a look. https://dapr.io/. - Source: Hacker News / about 3 years ago
Could you use Kubernetes to solve this? Have a single pod running the Redis instance and then multiple running Node.js talking to the Redis instance via something like DAPR (https://dapr.io/). - Source: Hacker News / about 3 years ago
Dapr is also building a workflow orchestrator into their microservice system. It's almost in Beta, and when you combine it with Dapr's Virtual Actors, it looks powerful. It will also let you integrate a workflow engine like Temporal, too. https://dapr.io/. Source: over 3 years ago
Do you know an article comparing Dapr to other products?
Suggest a link to a post with product alternatives.
Is Dapr good? This is an informative page that will help you find out. Moreover, you can review and discuss Dapr 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.