Skip to content

jhart0/LambdaSharpTool

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

λ#

LambdaSharp - Serverless .NET on AWS

Read what's new in the v0.8.1 "Hicetas" release.

LambdaSharp is a CLI and framework for serverless .NET Core application development on AWS. LambdaSharp uses a simple declarative syntax to generate sophisticated CloudFormation templates that provide simple, yet flexible, deployment options.

The objective of LambdaSharp is to accelerate the development pace of serverless solutions while helping developers adhere consistently to best practices to create scalable, observable, and modular systems.

λ# CLI

Install LambdaSharp CLI

The LambdaSharp CLI is installed as a .NET Global Tool.

dotnet tool install -g LambdaSharp.Tool

Once installed, a deployment tier must be initialized.

lash init --quick-start

Deploy a LambdaSharp Module

Creating modules with Lambda functions and deploying them only requires a few steps.

# Create a new LambdaSharp module
lash new module MySampleModule

# Add a function to the LambdaSharp module
lash new function MyFunction --type generic

# Deploy the LambdaSharp module
lash deploy

The LambdaSharp CLI uses a YAML file to compile the C# projects, upload artifacts, and deploy the CloudFormation stack in one step. The YAML file describes the entire module including the inputs, outputs, variables, resources, and functions.

Module: MySampleModule
Items:

 - Function: MyFunction
   Memory: 128
   Timeout: 30

The C# project contains the Lambda handler.

namespace MySampleModule.MyFunction {

    public class FunctionRequest {

        // add request fields
    }

    public class FunctionResponse {

        // add response fields
    }

    public sealed class Function : ALambdaFunction<FunctionRequest, FunctionResponse> {

        //--- Methods ---
        public override Task InitializeAsync(LambdaConfig config)
            => Task.CompletedTask;

        public override async Task<FunctionResponse> ProcessMessageAsync(FunctionRequest request) {

            // add business logic

            return new FunctionResponse();
        }
    }
}

Learn More

Getting Started

  1. Setup LambdaSharp

Articles

  1. Why LambdaSharp?
  2. Constructors/Destructors for CloudFormation

Samples

  1. Create a Serverless Chat with Cognito, WebSocket, DynamoDB, and Lambda
  2. Create a Static Website with CloudFormation
  3. Create Animated GIFs from Videos with AWS Lambda
  4. Misc. LambdaSharp Samples

References

  1. LambdaSharp CLI Reference
  2. LambdaSharp .NET SDK Reference
  3. LambdaSharp Syntax Reference
  4. LambdaSharp Module IAM Short-hands
  5. Modules
    1. LambdaSharp.Core
    2. LambdaSharp.S3.IO
    3. LambdaSharp.S3.Subscriber
    4. LambdaSharp.Twitter.Query
  6. Resource Types
    1. LambdaSharp::S3::EmptyBucket
    2. LambdaSharp::S3::Subscription
    3. LambdaSharp::S3::Unzip
    4. LambdaSharp::S3::WriteJson

License

Copyright (c) 2018-2020 LambdaSharp (λ#)

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

Serverless .NET on AWS - λ# is a CLI and Framework for Rapid Application Development using .NET Core on AWS

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 98.6%
  • Shell 1.2%
  • Other 0.2%