0.1.7 • Published 3 years ago

lambda-debugger v0.1.7

Weekly downloads
17
License
MIT
Repository
github
Last release
3 years ago

Lambda Debugger

Time travel offline debugging for your Nodejs Lambda function.

Lambda debugger records all your function execution, so you can replay it at a later time. Stop scattering your code with console.log.

Installation

npm install lambda-debugger --save

Usage

Just require this module inside your handler

const lambdaDebugger = require("lambda-debugger");

exports.handler = lambdaDebugger((event, context,callback) => {
    callback(null, "Hello Lambda Debugger!");
});

Roadmap

  • Support source maps for javascript

Currently under development

0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago