magic.library 17.3.9

dotnet add package magic.library --version 17.3.9
                    
NuGet\Install-Package magic.library -Version 17.3.9
                    
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="magic.library" Version="17.3.9" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="magic.library" Version="17.3.9" />
                    
Directory.Packages.props
<PackageReference Include="magic.library" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add magic.library --version 17.3.9
                    
#r "nuget: magic.library, 17.3.9"
                    
#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.
#:package magic.library@17.3.9
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=magic.library&version=17.3.9
                    
Install as a Cake Addin
#tool nuget:?package=magic.library&version=17.3.9
                    
Install as a Cake Tool

magic.library - Tying Magic together

This project helps you to wire up everything related to Magic. Normally you'd use it simply like the following from your startup class in your .Net 8 Web API project.

using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using magic.library;

namespace magic.backend
{
    public class Startup
    {
        public Startup(IConfiguration configuration)
        {
            Configuration = configuration;
        }

        IConfiguration Configuration { get; }

        public void ConfigureServices(IServiceCollection services)
        {
            // Initializing Magic.
            services.AddMagic(Configuration);
        }

        public void Configure(IApplicationBuilder app)
        {
            // Initializing Magic.
            app.UseMagic(Configuration);
        }
    }
}

However, you can also take more control over how things are actually wired up, by instead of using the "do all methods" called AddMagic and UseMagic, invoke some of the specialized initialization methods, you can find below.

  • IServiceCollection.AddMagicCaching
  • IServiceCollection.AddMagicHttp
  • IServiceCollection.AddMagicLogging
  • IServiceCollection.AddMagicSignals
  • IServiceCollection.AddMagicExceptions
  • IServiceCollection.AddMagicEndpoints
  • IServiceCollection.AddMagicAuthorization
  • IServiceCollection.AddMagicFileServices
  • IServiceCollection.AddMagicFileServices
  • IServiceCollection.AddMagicConfiguration
  • IServiceCollection.AddMagicScheduler
  • IServiceCollection.AddMagicMail
  • IServiceCollection.AddMagicLambda
  • IServiceCollection.AddMagicSockets

The above methods is basically what the AddMagic method actually does, and they're extension methods of IServiceCollection, that can be found in the magic.library namespace. Similar alternatives to UseMagic can be found below.

  • IApplicationBuilder.UseMagicExceptions
  • IApplicationBuilder.UseMagicStartupFiles
  • IApplicationBuilder.UseMagicScheduler
  • IApplicationBuilder.UseMagicCors

If you use these methods instead of the "do all methods", your motivation would probably be to replace one of these methods with your own implementation, to exchange the default wiring, by (for instance) using a "virtual database based file system" by creating your own service implementation of for instance IFileService from "magic.lambda.io", or use a different logging provider than the default, etc. If you wish to do this, you'd probably benefit from looking at what the default implementation of your method does, to understand the requirements from your method. Doing this is very powerful, and allows you to change the way the system behaves by default - But is also definitely considered an "advanced exercise".

Exceptions handlers

Magic allows you to provide a custom exceptions handler on a per folder level. This overrides the default exception logic with a custom exception handler expected to be named "exceptions.hl" and found within the folder hierarchy where an HTTP invocation is resolved. For instance, if you wish to create your own exception handler for a specific module called "foo", you can create an exception handler file called "/files/modules/foo/exceptions.hl", and expect this file to be invoked every time an unhandled exception occurs, anywhere inside of your "foo" folder. This allows you to transform an unhandled exception, such as for instance localising it or customising it in any ways. Your custom exception handler will be invoked with the following arguments.

  • [message] - The exception error message
  • [path] - The URL that triggered the exception
  • [field] - If the exception that was thrown declared a field, this argument will contain the name of the field
  • [status] - If the exception that was thrown declared a status code, this argument will contain the status code
  • [public] - If the exception that was thrown wants to propagate to the client this will be true

You can return a "transformed" exception from your exception handler, returning the following arguments, that will end up becoming the response object returned to the client.

  • [message] - Message to return as JSON to client
  • [field] - Field to return as JSON to client
  • [status] - Status code to decorate your HTTP response with

The default exception handler can be found in "/files/exceptions.hl", which will be invoked if no custom exception handler is declared further down in your folder hierarchy.

Magic's GitHub project page

Magic is 100% Open Source and you can find the primary project GitHub page here.

Project website for magic.lambda.library

The source code for this repository can be found at github.com/polterguy/magic.library, and you can provide feedback, provide bug reports, etc at the same place.

  • Build status
  • Quality Gate Status
  • Bugs
  • Code Smells
  • Duplicated Lines (%)
  • Lines of Code
  • Maintainability Rating
  • Reliability Rating
  • Security Rating
  • Technical Debt
  • Vulnerabilities

The projects is copyright Thomas Hansen 2023 - 2024, and professionally maintained by AINIRO.IO.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
17.3.9 1,430 2/17/2024
17.3.7 242 2/12/2024
17.3.6 227 2/12/2024
17.3.5 220 2/10/2024
17.3.4 186 2/9/2024
17.3.3 203 2/8/2024
17.3.2 219 2/2/2024
17.3.1 233 1/30/2024
17.2.2 194 1/30/2024
17.2.1 227 1/22/2024
17.2.0 202 1/22/2024
17.1.7 275 1/12/2024
17.1.6 231 1/11/2024
17.1.5 250 1/5/2024
17.0.1 309 1/1/2024
17.0.0 423 12/14/2023
16.11.6 299 11/14/2023
16.11.5 245 11/12/2023
16.9.0 382 10/9/2023
16.8.5 244 9/30/2023
16.8.4 242 9/25/2023
16.8.0 211 9/24/2023
16.7.51 201 9/24/2023
16.7.50 226 9/23/2023
16.7.1 287 9/4/2023
16.7.0 394 7/11/2023
16.6.13 263 7/6/2023
16.6.12 290 7/5/2023
16.6.11 275 7/5/2023
16.6.5 315 7/3/2023
16.4.4 310 7/2/2023
16.4.3 300 6/27/2023
16.4.2 316 6/25/2023
16.4.1 311 6/25/2023
16.4.0 295 6/22/2023
16.3.2 401 6/7/2023
16.3.0 434 5/28/2023
16.2.0 505 5/13/2023
16.1.10 436 5/1/2023
16.1.9 398 4/30/2023
16.1.1 409 4/20/2023
15.10.11 444 4/16/2023
15.9.40 455 4/3/2023
15.9.1 530 3/27/2023
15.9.0 535 3/24/2023
15.8.2 555 3/20/2023
15.7.0 452 3/6/2023
15.5.20 800 2/23/2023
15.5.13 611 2/13/2023
15.5.9 513 2/11/2023
15.5.2 603 2/5/2023
15.5.1 529 2/3/2023
15.5.0 574 1/28/2023
15.2.0 707 1/18/2023
15.1.0 1,201 12/28/2022
14.5.7 738 12/13/2022
14.5.5 841 12/6/2022
14.5.1 672 11/23/2022
14.5.0 619 11/18/2022
14.4.5 685 10/22/2022
14.4.2 632 10/22/2022
14.4.1 642 10/22/2022
14.4.0 669 10/17/2022
14.3.9 673 10/13/2022
14.3.6 664 10/7/2022
14.3.2 709 9/18/2022
14.3.1 773 9/12/2022
14.3.0 689 9/10/2022
14.1.3 945 8/7/2022
14.1.2 680 8/7/2022
14.1.1 715 8/7/2022
14.0.14 681 7/26/2022
14.0.12 667 7/24/2022
14.0.11 641 7/23/2022
14.0.10 677 7/23/2022
14.0.9 673 7/23/2022
14.0.8 746 7/17/2022
14.0.5 832 7/11/2022
14.0.4 726 7/7/2022
14.0.3 727 7/2/2022
14.0.2 692 7/2/2022
14.0.1 736 7/2/2022
14.0.0 723 6/25/2022
13.4.28 698 6/11/2022
13.4.25 814 6/9/2022
13.4.24 706 6/9/2022
13.4.19 760 6/8/2022
13.4.3 739 6/6/2022
13.4.2 780 6/4/2022
13.4.0 804 5/31/2022
13.3.8 760 5/19/2022
13.3.7 730 5/18/2022
13.3.6 760 5/14/2022
13.3.4 832 5/9/2022
13.3.1 772 5/1/2022
13.3.0 749 5/1/2022
13.2.2 798 4/25/2022
13.2.1 744 4/25/2022
13.2.0 778 4/21/2022
13.1.1 800 4/20/2022
13.1.0 899 4/7/2022
13.0.0 788 4/5/2022
12.0.3 988 3/14/2022
11.0.7 838 3/11/2022
11.0.5 902 3/2/2022
11.0.4 817 2/22/2022
11.0.3 830 2/9/2022
11.0.2 887 2/6/2022
11.0.1 866 2/5/2022
10.0.21 863 1/28/2022
10.0.20 867 1/27/2022
10.0.19 825 1/23/2022
10.0.18 803 1/17/2022
10.0.17 812 1/14/2022
10.0.16 689 1/2/2022
10.0.15 729 12/31/2021
10.0.14 748 12/28/2021
10.0.13 824 12/23/2021
10.0.11 597 12/23/2021
10.0.10 620 12/22/2021
10.0.9 773 12/22/2021
10.0.8 674 12/22/2021
10.0.7 834 12/22/2021
10.0.6 702 12/19/2021
10.0.5 817 12/18/2021
10.0.3 589 12/16/2021
10.0.2 696 12/14/2021
10.0.1 549 12/13/2021
10.0.0 608 12/6/2021
9.9.9 1,385 11/29/2021
9.9.6 4,847 11/24/2021
9.9.5 601 11/23/2021
9.9.4 914 11/21/2021
9.9.3 667 11/9/2021
9.9.2 711 11/4/2021
9.9.0 795 10/30/2021
9.8.9 826 10/29/2021
9.8.7 689 10/27/2021
9.8.6 719 10/27/2021
9.8.5 793 10/26/2021
9.8.4 759 10/25/2021
9.8.3 830 10/24/2021
9.8.1 697 10/21/2021
9.8.0 767 10/20/2021
9.7.9 682 10/20/2021
9.7.8 743 10/19/2021
9.7.7 925 10/17/2021
9.7.6 850 10/17/2021
9.7.5 728 10/14/2021
9.7.1 664 10/14/2021
9.7.0 754 10/9/2021
9.6.8 746 8/30/2021
9.6.7 706 8/26/2021
9.6.6 822 8/14/2021
9.6.5 955 8/11/2021
9.6.4 731 8/10/2021
9.6.3 715 8/9/2021
9.6.2 741 8/8/2021
9.6.1 708 8/8/2021
9.5.9 905 8/5/2021
9.5.8 889 8/4/2021
9.5.3 747 7/20/2021
9.5.0 1,129 7/9/2021
9.4.5 758 6/29/2021
9.4.4 881 6/29/2021
9.4.0 710 6/24/2021
9.3.7 739 6/21/2021
9.3.6 790 6/21/2021
9.3.5 906 6/18/2021
9.3.4 848 6/18/2021
9.2.5 917 6/7/2021
9.2.4 837 6/6/2021
9.2.3 788 6/6/2021
9.2.2 690 6/4/2021
9.2.1 924 6/1/2021
9.2.0 873 5/26/2021
9.1.9 704 5/5/2021
9.1.8 869 5/5/2021
9.1.7 723 5/3/2021
9.1.4 719 4/21/2021
9.1.2 699 4/18/2021
9.1.1 705 4/15/2021
9.1.0 719 4/14/2021
9.0.1 794 4/12/2021
9.0.0 699 4/5/2021
8.9.92 1,279 3/30/2021
8.9.4 1,273 3/26/2021
8.9.3 1,351 3/19/2021
8.9.2 1,323 1/29/2021
8.9.1 1,367 1/24/2021
8.9.0 1,449 1/22/2021
8.7.1 1,752 11/15/2020
8.7.0 1,457 11/15/2020
8.6.9 1,406 11/8/2020
8.6.7 1,371 11/4/2020
8.6.6 1,453 11/2/2020
8.6.5 1,450 11/1/2020
8.6.3 1,475 10/30/2020
8.6.2 1,345 10/30/2020
8.6.1 1,457 10/29/2020
8.6.0 1,383 10/28/2020
8.5.1 1,421 10/26/2020
8.5.0 1,355 10/23/2020
8.4.6 1,568 10/20/2020
8.4.5 1,458 10/18/2020
8.4.4 1,454 10/17/2020
8.4.3 1,439 10/16/2020
8.4.2 1,411 10/16/2020
8.4.1 1,378 10/15/2020
8.4.0 1,476 10/13/2020
8.3.3 1,385 10/11/2020
8.3.2 1,436 10/8/2020
8.3.1 1,458 10/5/2020
8.3.0 1,411 10/3/2020
8.2.3 1,382 10/1/2020
8.2.2 1,620 9/26/2020
8.2.1 1,497 9/25/2020
8.2.0 1,532 9/25/2020
8.1.25 1,422 9/24/2020
8.1.24 1,413 9/23/2020
8.1.23 1,338 9/23/2020
8.1.22 1,403 9/21/2020
8.1.21 1,477 9/15/2020
8.1.20 1,500 9/14/2020
8.1.19 1,439 9/13/2020
8.1.18 1,418 9/13/2020
8.1.17 1,467 9/13/2020
8.1.16 1,473 9/13/2020
8.1.15 1,394 9/12/2020
8.1.13 1,292 9/11/2020
8.1.12 1,433 9/11/2020
8.1.11 1,415 9/11/2020
8.1.10 1,455 9/6/2020
8.1.9 1,454 9/3/2020
8.1.8 1,473 9/2/2020
8.1.7 1,369 8/28/2020
8.1.4 1,344 8/25/2020
8.1.3 1,538 8/18/2020
8.1.2 1,331 8/16/2020
8.1.1 1,389 8/15/2020
8.0.3 1,416 8/11/2020
8.0.2 1,445 8/7/2020
8.0.1 1,443 8/7/2020
8.0.0 1,379 8/7/2020
7.0.1 1,499 6/28/2020
7.0.0 1,502 6/28/2020
5.0.10 1,465 5/31/2020
5.0.9 1,577 5/30/2020
5.0.8 1,418 5/29/2020
5.0.7 1,451 5/29/2020
5.0.5 1,516 2/27/2020
5.0.4 1,457 2/26/2020
5.0.3 1,452 2/26/2020
5.0.2 1,453 2/25/2020
5.0.1 1,375 2/25/2020
5.0.0 1,500 2/25/2020
4.1.5 1,430 2/23/2020
4.1.4 1,523 2/23/2020
4.1.3 1,442 2/22/2020
4.1.2 1,449 2/22/2020
4.1.1 1,407 2/21/2020
4.1.0 1,466 2/21/2020
4.0.9 1,538 2/7/2020
4.0.8 1,370 2/7/2020
4.0.7 1,417 2/7/2020
4.0.5 1,447 1/28/2020
4.0.4 1,541 1/27/2020
4.0.3 1,393 1/27/2020
4.0.2 1,553 1/16/2020
4.0.1 1,568 1/11/2020
4.0.0 1,520 1/5/2020
3.1.7 1,548 12/17/2019
3.1.6 1,479 12/12/2019
3.1.5 1,466 12/12/2019
3.1.4 1,448 12/5/2019
3.1.3 1,511 12/4/2019
3.1.2 1,546 11/30/2019
3.1.1 1,678 11/26/2019
3.1.0 1,504 11/10/2019
3.0.4 1,323 11/1/2019
3.0.3 1,502 10/28/2019
3.0.2 1,515 10/28/2019
3.0.1 1,509 10/26/2019
3.0.0 1,326 10/23/2019
2.1.4 1,126 10/21/2019
2.1.3 1,460 10/21/2019
2.1.2 1,589 10/21/2019
2.1.1 1,472 10/19/2019
2.1.0 1,540 10/19/2019
2.0.9 1,225 10/18/2019
2.0.8 1,493 10/18/2019
2.0.7 1,241 10/18/2019
2.0.6 1,216 10/18/2019
2.0.5 1,255 10/18/2019
2.0.4 1,205 10/17/2019
2.0.3 1,360 10/16/2019
2.0.2 1,353 10/15/2019
2.0.1 1,392 10/14/2019
2.0.0 1,242 10/13/2019
1.1.7 1,574 10/11/2019
1.1.6 1,527 10/11/2019