UNPKG

node-lambda

Version:

Command line tool for locally running and remotely deploying your node.js applications to Amazon Lambda.

10 lines (9 loc) 335 B
// For development/testing purposes export const handler = (event, context, callback) => { console.log('Running index.handler (mjs)') console.log('==================================') console.log('event', event) console.log('==================================') console.log('Stopping index.handler (mjs)') callback(null) }