Skip to content

Instantly share code, notes, and snippets.

@jkeefe
Created November 22, 2017 16:05
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 jkeefe/ebdb3cc1b3a704f4efb93adad76af284 to your computer and use it in GitHub Desktop.
Save jkeefe/ebdb3cc1b3a704f4efb93adad76af284 to your computer and use it in GitHub Desktop.
Base index.js file for making lambda functions
var twilio = require('twilio');
var mongodb = require('mongodb');
module.exports = function(request) {
return new Promise(function(fulfill, reject){
// functional code goes in here
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment