JaxNode Oct 2016
npm install
npm install lodash --save
npm uninstall lodash --save
npm install babel -g
npm update --save
yarn
yarn add lodash
yarn remove lodash
yarn global add babel
yarn upgrade
module.exports.hello = (event, context, callback) => {
const response = {
statusCode: 200,
body: JSON.stringify({
message: 'Hello World!',
input: event,
}),
};
callback(null, response);
};