Skip to content

The Serverless Function Development Kit (FDK)

License

Notifications You must be signed in to change notification settings

isabella232/fdk-tmp

 
 

Repository files navigation

fdk

The Serverless Function Development Kit (FDK)

The Serverless FDK is designed to ease the adoption of serverless technology. It provides a simple middleware abstraction for adding functionality and migrating existing solutions (like Express) without having to rewrite your code. It further enables runtime interaction with Serverless Services including invoking functions and dispatching events to the target Service.

Build Status

npm version
Build Status
NPM

Usage

// index.js
const fdk = require('@serverless/fdk')

const myHandler = fdk()
  .handler(() => 'Hello World')

module.exports.myHandler = myHandler
# serverless.yml

service:
  name: my-service

functions:
  myHandler:
    handler: index.myHandler

Documentation

Full API documentation - Learn about available methods and concepts.

Examples

Plenty of examples - Examples for various cloud providers and uses of functionality.

Install

npm install --save @serverless/fdk

About

The Serverless Function Development Kit (FDK)

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 99.6%
  • Shell 0.4%