Lambifast 1.0.0

dotnet add package Lambifast --version 1.0.0
NuGet\Install-Package Lambifast -Version 1.0.0
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="Lambifast" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Lambifast --version 1.0.0
#r "nuget: Lambifast, 1.0.0"
#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 Lambifast as a Cake Addin
#addin nuget:?package=Lambifast&version=1.0.0

// Install Lambifast as a Cake Tool
#tool nuget:?package=Lambifast&version=1.0.0

Lambifast

<br />

Lambifast is an extension of the framework provided by AWS Amazon.Lambda.AspNetCoreServer.Hosting (https://www.nuget.org/packages/Amazon.Lambda.AspNetCoreServer.Hosting/#readme-body-tab).

Lambifast provides you with a simple extension to develop microservices on serverless architecture. It allows you to have tracing and logging capabilities integrated with AWS CloudWatch service. Input dto validation using FluentValidator and errors in standard RFC.

GitHub Repository: https://github.com/Sbolder/Lambifast

Table of Contents

Install

To install Lambifast in an existing project as a dependency:

Install with nuget:

dotnet add package Lambifast --version 1.0.0

In your Program.cs:

public class Program : BaseProgram<Program>
{
    public static async Task Main(String[] args)
    {
        var program = new Program();
        await program.RunAsync(args);
    }


    protected override void InnerConfigureServices(IServiceCollection services, IConfiguration configuration)
    {
        #region Services
        //Register your Services
        services.AddSingleton<IPeopleService, PeopleService>();

        #endregion
    }
}

Edit your Controller:

public class PeopleController : ControllerBase{
    ...
}

Example

TODO

License

Licensed under MIT.

For your convenience, here is a list of all the licenses of our production dependencies:

  • MIT
  • Apache License 2.0
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. 
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
1.0.0 102 3/9/2024