Halifax.Api 0.0.21

There is a newer version of this package available.
See the version list below for details.
dotnet add package Halifax.Api --version 0.0.21
NuGet\Install-Package Halifax.Api -Version 0.0.21
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Halifax.Api" Version="0.0.21" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Halifax.Api --version 0.0.21
#r "nuget: Halifax.Api, 0.0.21"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Halifax.Api as a Cake Addin
#addin nuget:?package=Halifax.Api&version=0.0.21

// Install Halifax.Api as a Cake Tool
#tool nuget:?package=Halifax.Api&version=0.0.21
Package NuGet
Halifax.Api     NuGet
Halifax.Core     NuGet
Halifax.Models     NuGet

Halifax Service Foundation

Simplistic libraries for complex projects. Halifax libraries are designed to speed up API service development process by encapsulating common functionality required for all microservices, allowing developers to focus on the business logic instead of copy-pasting the boilerplate code from project to project. The libraries are focussed on the following aspects of any application:

  • ✅ Exception handling
  • ✅ API models
  • ✅ Swagger
  • ✅ JWT Auth
  • ✅ Logging
  • ✅ CORS

Installation

Install the API library using nuget package with Package Manager Console:

Install-Package Halifax.Api

Or using .NET CLI:

dotnet add package Halifax.Api

Getting Started

Please refer to the Peggy's Cove example API project Startup.cs file for more details but basically all you need is to have this in your startup class:

public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddHalifax();
    }

    public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
    {
        app.UseHalifax();
    }
}

This enables routing with controllers and exception handling.

Models

It's very beneficial if all API responses follow the same format. In order to achieve it there is a model called ApiResponse. It's designed to return response data, empty data or error information in the same consistent format. Here are the main use cases:

// Return API response with your model
return ApiResponse.With(model);

// Return empty API response
return ApiResponse.Empty;

When API response is used for all APIs in the project the response will always be of a format:

{
    data: {...} // your model
    success: true/false,
    error: { // null if successful
        type: "ArgumentNullException",
        message: "Email is required",
        trace: "(126) ArgumentNullException was thrown ... (typical exception stack trace)"
    }
}

MIT License

Copyright (c) 2020 Andrei M

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.2.0 67 3/22/2024
3.1.1 159 3/11/2024
3.1.0 183 2/11/2024
3.0.2 216 1/24/2024
3.0.1 452 11/27/2023
3.0.0 162 11/17/2023
2.0.9 138 10/30/2023
2.0.8 295 9/14/2023
2.0.7 289 8/16/2023
2.0.6 280 7/9/2023
2.0.5 544 3/20/2023
2.0.4 227 3/20/2023
2.0.3 416 2/24/2023
2.0.2 526 1/2/2023
2.0.1 302 1/2/2023
2.0.0 289 12/21/2022
1.3.21 321 12/13/2022
1.3.20 300 12/5/2022
1.3.19 296 12/5/2022
1.3.18 324 12/3/2022
1.3.17 571 10/16/2022
1.3.16 453 9/21/2022
1.3.15 560 8/19/2022
1.3.14 547 7/19/2022
1.3.13 450 7/11/2022
1.3.12 526 6/22/2022
1.3.11 473 6/20/2022
1.3.10 439 6/14/2022
1.3.9 427 6/13/2022
1.3.8 448 6/13/2022
1.3.7 416 6/11/2022
1.3.6 431 6/11/2022
1.3.5 571 6/1/2022
1.3.4 434 6/1/2022
1.3.3 438 6/1/2022
1.3.2 496 5/20/2022
1.3.1 675 4/17/2022
1.3.0 465 4/8/2022
1.2.1 562 3/12/2022
1.2.0 650 2/2/2022
1.1.5 441 12/31/2021
1.1.4 328 12/28/2021
1.1.3 395 12/19/2021
1.1.2 323 12/15/2021
1.1.1 294 12/15/2021
1.1.0 308 12/15/2021
1.0.7 301 12/10/2021
1.0.6 287 12/10/2021
1.0.5 281 12/10/2021
1.0.4 285 12/10/2021
1.0.3 281 12/10/2021
1.0.2 301 12/10/2021
1.0.1 300 12/10/2021
1.0.0 333 12/7/2021
0.3.0 517 12/6/2021
0.2.4 292 12/3/2021
0.2.3 320 11/22/2021
0.2.2 397 11/11/2021
0.2.1 345 11/11/2021
0.2.0 318 11/9/2021
0.1.1 325 11/3/2021
0.1.0 372 10/20/2021
0.0.22 378 10/20/2021
0.0.21 325 10/18/2021
0.0.20 358 10/4/2021
0.0.19 395 10/4/2021
0.0.18 317 10/4/2021
0.0.17 351 9/20/2021
0.0.16 337 9/16/2021
0.0.15 331 9/16/2021
0.0.14 415 9/8/2021
0.0.13 374 8/27/2021
0.0.12 336 8/27/2021
0.0.11 334 8/27/2021
0.0.10 334 8/17/2021
0.0.9 339 8/17/2021
0.0.8 333 8/12/2021
0.0.7 326 8/12/2021
0.0.6 323 8/11/2021
0.0.5 319 8/11/2021
0.0.4 354 8/10/2021
0.0.3 346 8/9/2021
0.0.2 337 8/9/2021
0.0.1 346 8/9/2021

v0.0.x - Initial release