adapter-api
in regards to additional http verbs next to GET
and POST
?Hello all,
I did an initial analysis on the failed PR: laconiajs/laconia#323
Release notes for npm-package-json-lint
states: Array type rules now ensure at least one item is passed.
This is contradicting to the rule prefer-property-order
which can allow empty array
https://npmpackagejsonlint.org/docs/en/rules/package-json-properties/prefer-property-order
These are the dependencies available in LaconiaContext
. Is your token somewhere to be found in that list?
yes, from work and home and same problem:
An error occurred: S3Tracker - laconia-acceptance-node8-tracker already exists.
serverless.yml
for now.
AWS add support to Node 12: https://aws.amazon.com/about-aws/whats-new/2019/11/aws-lambda-supports-node-js-12/
And scheduled Node 8 Deprecation: 2019 January 6 (Create), 2020 February 3 (Update)
Hi all !!
Hi have a problem when i wanna create a middleware.
TypeError: next is not a function
Im using laconia/core 1.9 and the example in the docs
const laconia = require("@laconia/core");
// Define a new middleware
const myMiddleware = next => (event, context, callback) => {
console.log("Logging all events in my middleware", event);
return next(event, context, callback);
};
const app = (event, laconiaContext) => {};
const handler = laconia(app);
exports.handler = myMiddleware(handler); // Wrap your handler with a middleware