# n-lambda **Repository Path**: mirrors_Financial-Times/n-lambda ## Basic Information - **Project Name**: n-lambda - **Description**: Like n-express, but for λ - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-07-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # n-lambda Like n-express, but for λ ## Usage ```js 'use strict'; var λ = require('@financial-times/n-lambda'); exports.handle = λ(function(event) { return somethingThatReturnsAPromise() .catch(function(err) { if (/* err is a server (rather than a user) error */) { λ.raven.captureError(err); } return Promise.reject(err); }); }); ```