0.2.2 • Published 4 years ago

aws-serverless-toolbox v0.2.2

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

AWS Serverless Toolbox

This is still a work in progress. Some of the stuff works well, but documentation is currently lacking. I am actively changing things, so use at your own risk.

Install notes:

  • AWS SDK

Object Stores

For the purpose of working with single objects. Supports get, put, and delete. Also supports custom reducers for updates.

Interface:

export default interface ObjectStore<T> {
  get(id: string): Promise<T | undefined>;
  put(id: string, item: T): Promise<T>;
  delete(id: string): Promise<void>;
  updateState(id: string, action: Action, reducer: Reducer<T>): Promise<T>;
}

Store types

  • S3
  • DynamoDB

API Gateway

Routing

WebSockets

0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago