Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
lambda-server
Advanced tools
A module for providing some basic services to serverles services implemented by AWS Lambda. For the time being, the server only intitializes a the STACK_NAME environment variable to contain the Cloudformation stack name (based on the function name, e.g. ABC-functionName-123456 => STACK_NAME=ABC). More logic can and will be added later.
Package your lambda function into a module lambdaFunction.js with syntax
var lambdaServer;
function init(server) {
lambdaServer = server;
}
function handleRequest(event, cb) {
if (ERROR) {
cb(ERROR MESSAGE HERE)
}
console.log('I am in CloudFormation stack ' + process.env.STACK_NAME);
cb(null, {
... YOUR RESPONSE OBJECT HERE
});
}
module.exports = exports = {
init: init,
handleRequest: handleRequest
};
The index.js for your lambda-server based service would be e.g.
var server = require('lambda-server');
var lambdaFunction = require('./lambdaFunction.js');
server.init({
lambdaFunction: lambdaFunction
});
module.exports = exports = {
handler : server.handler
};
An alternative error handler can be registered (e.g. for logging / notifications) by passing the error handler function in 'errorHandler' during lambda-server-init. e.g.
var server = require('lambda-server');
var lambdaFunction = require('./lambdaFunction.js');
var myErrorHandler = function(error, callback) {
call_your_logging_function_here(error, callback);
}
server.init({
lambdaFunction: lambdaFunction,
errorHandler: myErrorHandler
});
module.exports = exports = {
handler : server.handler
};
Ideas for future versions:
Copyright (c) 2015 SC5, licensed for users and contributors under MIT license. https://github.com/SC5/lambda-server/blob/master/LICENSE
FAQs
Module for generic initalization of lambda processes and requests
The npm package lambda-server receives a total of 0 weekly downloads. As such, lambda-server popularity was classified as not popular.
We found that lambda-server demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.