aws-lambda-haskell-runtime-wai: Run wai applications on AWS Lambda

[ aws, bsd3, library ] [ Propose Tags ]

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 1.0.0, 1.0.1, 1.0.2, 2.0.0, 2.0.1, 2.0.2
Change log ChangeLog.md
Dependencies aeson, aws-lambda-haskell-runtime (>=4.0.0), base (>=4.7 && <5), binary, bytestring, case-insensitive, http-types, iproute, network, text, unordered-containers, vault, wai [details]
License BSD-3-Clause
Copyright Eir Försäkring
Author Dobromir Nikolov
Maintainer dnikolovv@hotmail.com
Category AWS
Home page https://github.com/eir-forsakring/aws-lambda-haskell-runtime-wai#readme
Bug tracker https://github.com/eir-forsakring/aws-lambda-haskell-runtime-wai/issues
Source repo head: git clone https://github.com/eir-forsakring/aws-lambda-haskell-runtime-wai
Uploaded by dnikolovv at 2021-03-08T07:06:28Z
Distributions Stackage:2.0.2
Downloads 1163 total (24 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2021-03-08 [all 1 reports]

Readme for aws-lambda-haskell-runtime-wai-2.0.1

[back to package description]

aws-lambda-haskell-runtime-wai Hackage Haskell CI

Quick start

  1. Set up your project to use AWS Lambda by following the instructions on the aws-lambda-haskell-runtime website.
  2. Use the waiHandler function from AWS.Lambda.Wai to convert your wai application to a handler. There are two ways to do this.
-- 1. Pass in the initializeApplicationFunction
-- this will call initializeApplication per each call
handler :: WaiHandler ()
handler = waiHandler initializeApplication

-- Wai application initialization logic
initializeApplication :: IO Application
initializeApplication = ...
-- 2. Store the Application inside your custom context and provide a getter function
-- this will initialize the application once per cold start and keep it alive while the lambda is warm
handler :: WaiHandler MyAppConfig
handler = waiHandler' getWaiApp

data MyAppConfig =
  MyAppConfig
    { getWaiApp :: Application }

For a complete example see theam/aws-lambda-haskell-runtime/tree/master/examples/wai-app