the-sett/elm-serverless - version: 4.0.0

for more information visit the package's GitHub page

Package contains the following modules:

serverless

Contacts for Support - @rupertlssmith on https://elmlang.slack.com - @rupert on https://discourse.elm-lang.org

elm-serverless

Deploy an Elm HTTP API to using the serverless framework. This can be used to write AWS Lambda functions in Elm. Other cloud serverless functions are supported too, through the serverless framework.

elm/http defines an API for making HTTP requests.

the-sett/elm-serverless defines an API for receiving HTTP requests, and responding to them.

It can be run standalone on your local machine, which is often used for development and testing purposes. It is usually deployed to the cloud using the serverless framework.

npm package - serverless-elm-bridge

Define your API in elm and then use the npm package to bridge the interface between the [serverless][] framework and your Elm program. The npm package is available here: https://www.npmjs.com/package/@the-sett/serverless-elm-bridge

This can be installed into your package.json like this:

"dependencies": {
  "@the-sett/serverless-elm-bridge": "^3.0.0",
  ...

The same version of the npm bridge package should be used as the Elm package.

Documentation