![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.