Last active
January 18, 2018 19:50
-
-
Save coreylight/01f145508c087bc016b460324843faa6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const iopipeLib = require('iopipe'); | |
const profiler = require('@iopipe/profiler'); | |
const iopipe = iopipeLib({ | |
token: 'TOKEN_HERE', | |
plugins: [profiler({ enabled: true })] | |
}); | |
exports.handler = iopipe((event, context) => { | |
context.succeed('Whoomp there it is!') | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment