aws-lambda-haskell-runtime
aws-lambda-haskell-runtime copied to clipboard
⚡Haskell runtime for AWS Lambda
There's a lot of usage of "strict" Strings in the package. Is there a good reason not to use Text? Particularly since there's a dependency on Aeson (and probably others),...
Check out the branches `persistent` and `beam`: https://github.com/Jimbo4350/serverless-servant-faulty If you remove comment out: ` fromServant Context -> IO (Either String Response) handler event context = do fromServant
While screwing around with the library, I got the clever idea to try returning html directly from an aws function rather than JSON. In node this is easy to do...
According to #18 the runtime chokes on values less than 512MB of RAM. It would be very nice (and necessary) to know what can be optimized to allow less values...
Currently, we are publishing the AWS Layers when changes are merged to master. It would be awesome if this also was published to Hackage
Does anyone have any experience building a haskell + lambda docker image using `nixpkgs`'s `dockerTools` and `cabal`, instead of `stack` and the provided Dockerfile? I've tried a few strategies but...
I’m using aws-lambda-haskell-runtime, but recently stumbled over [hal](https://github.com/Nike-Inc/hal), and I wonder if there are significant difference worth knowing. At https://github.com/Nike-Inc/hal/issues/118 I asked the same, and Nathan responded, so I thought...
``` import Aws.Lambda main :: IO () main = runLambdaHaskellRuntime defaultDispatcherOptions (pure ()) id $ do addAPIGatewayHandler "api-gateway" gatewayHandler addALBHandler "alb" albHandler addStandaloneLambdaHandler "standalone" regularHandler gatewayHandler :: ApiGatewayRequest request ->...