Skip to content

Instantly share code, notes, and snippets.

@kobalski
Last active November 12, 2018 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kobalski/ad3ef0261b5cab1d93c3168334adf5d9 to your computer and use it in GitHub Desktop.
Save kobalski/ad3ef0261b5cab1d93c3168334adf5d9 to your computer and use it in GitHub Desktop.
vandium-helloword
const thundra = require("@thundra/core")();
const vandium = require('vandium');
exports.handler = thundra(vandium.api()
.GET((event) => {
return 'Hello ' + event.pathParameters.name + '!';
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment