Skip to content

Instantly share code, notes, and snippets.

@muneebaahmad
Last active March 9, 2018 06:23
Show Gist options
  • Save muneebaahmad/9155b75b480cd7fe86b4292d88376d6e to your computer and use it in GitHub Desktop.
Save muneebaahmad/9155b75b480cd7fe86b4292d88376d6e to your computer and use it in GitHub Desktop.
VS Code Launch Configuration
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/node_modules/.bin/lambda-local",
"args": [
"-l",
"index.js",
"-h",
"handler",
"-e",
"event.json"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment