Description
Returns exceptions in the form of JSON response for ASP.NET Core Web API.
To use the middleware in the development environment, update your Configure method of Startup class as below:
if (env.IsDevelopment())
{
app.UseDeveloperExceptionJsonResponse();
}
Developer Exception Json Response Middleware alternatives and similar packages
Based on the "API" category.
Alternatively, view Developer Exception Json Response Middleware alternatives based on common mentions on social networks and blogs.
-
NancyFx
Lightweight, low-ceremony, framework for building HTTP based services on .Net and Mono -
ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all -
GraphQL for .NET
GraphQL for .NET -
WexFlow
An extensible workflow engine with a cross-platform manager and designer. -
Telegram.Bot
.NET Client for Telegram Bot API -
Hot Chocolate
Hot Chocolate is a GraphQL server, written in C# for .Net Core and .Net Framework -
Xamarin.Essentials
Xamarin.Essentials provides developers with cross-platform APIs for their mobile applications. -
TLSharp
It's a perfect fit for any developer who would like to send data directly to Telegram users or write own custom Telegram client. -
Mobius: C# API for Spark
Mobius adds C# language binding to Apache Spark, enabling the implementation of Spark driver code and data processing operations in C#. -
WebAPI Contrib
Collection of open source projects to help improve your work with ASP.NET Web API -
JsonApiDotNetCore
JSON:API Framework for ASP.NET Core -
SapphireDb
SapphireDb Server, a self-hosted, easy to use realtime database for Asp.Net Core and EF Core -
RedditSharp
C# Implementation of the Reddit API. This is an ("unofficial") Fork of SirCmpwn/RedditSharp with Nuget package/support. -
Nelibur
Nelibur is message based web service framework on the pure WCF. Nelibur simplifies creating high-performance and message based web services and you certainly have all the power of the WCF. -
Lib.AspNetCore.ServerSentEvents
Lib.AspNetCore.ServerSentEvents is a library which provides Server-Sent Events (SSE) support for ASP.NET Core -
Breeze
Api framework enabling rich data access by using the OData 3 protocol. Client libraries available for Javascript and C#. -
Lib.Web.Mvc
Lib.Web.Mvc is a library bringing extensions to ASP.NET MVC for HTTP/2, Range Requests, Content Security Policy, jqGrid and more. -
cryptocompare-api
An async-based CryptoCompare API client library for .NET and .NET Core -
CommandQuery
Command Query Separation for ASP.NET Web API 2, ASP.NET Core, AWS Lambda and Azure Functions. -
Genius.NET
A .NET library to access Genius API @ (https://www.genius.com) -
ابزار Persian Tools
persiantools -
RequestManager
An HTTP request manager for .NET Core. -
Boycotter
Simple library for removing unnecessary properties from objects. -
GovLib
Interact with US government APIs in .NET -
DuckSharp
DuckDuckGo Async API Wrapper -
X.Web.Sitemap
Simple sitemap generator for .NET and .NET Core -
ASP.NET Web API
Framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices -
ASP.NET WebAPI
Framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices
Pixel-Perfect Multi-Platform Applications with C# and XAML
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of Developer Exception Json Response Middleware or a related project?
README
Developer Exception Json Response Middleware
Returns exceptions in form of JSON response for ASP.NET Core Web API.
Usage
To use the middleware in development environment, update your Configure
method of Startup
class
as below:
if (env.IsDevelopment())
{
app.UseDeveloperExceptionJsonResponse();
}