lamock
v0.1.6
Published
Development server for Node.js Lambda functions
Readme
lamock
Serve node.js Lambda functions on localhost
Getting Started
- Install
lamock
npm install lamock --save-dev- Serve your function handler
const serve = require("lamock");
const { handler } = require("./my-lambda-function");
serve(handler);Lamock will serve your handler from localhost:3000, and mock the AWS Lambda event, context and callback.
