Popularity
1.0
Growing
Activity
0.0
Stable
5
2
1

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(); }

Programming language: C#
License: MIT License
Tags: API     NetCore     AspNetCore     nuget     Dotnetcore     Middleware    

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.

Do you think we are missing an alternative of Developer Exception Json Response Middleware or a related project?

Add another 'API' Package

README

.NET Core

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();
}