@clipboard-health/execution-context
ExecutionContext
is a lightweight Node.js package built with TypeScript that leverages AsyncLocalStorage
to create a statically available context parallel to any execution. It provides a reliable, thread-safe context for attaching and accessing metadata throughout the lifecycle of an execution, such as API requests, background jobs, or message consumers. This allows various parts of your application to communicate and share metadata without needing to explicitly pass context objects.
Features
- Scoped Contexts: Attach data to a context that is specific to each execution scope.
- Static Access: Access context data statically anywhere in the codebase within an active execution.
- Metadata Aggregation: Store and retrieve metadata across the lifespan of an execution, ideal for logging, tracing, and other observability tasks.
Table of Contents
Install
npm install @clipboard-health/execution-context
Usage
This example demonstrates how to create a logging context, accumulate metadata from various function calls, and then log a single message containing all the gathered metadata.
import {
addMetadataToLocalContext,
getExecutionContext,
newExecutionContext,
runWithExecutionContext,
} from "@clipboard-health/execution-context";
export async function processRequest() {
await runWithExecutionContext(newExecutionContext("context-name"), async () => {
const context = getExecutionContext();
try {
addMetadataToLocalContext({ userId: "1" });
callFunctionThatAddsContext();
callFunctionThatCallsAnotherFunctionThatAddsContext();
console.log("event=MessageProcessed", { ...context?.metadata });
} catch (error) {
addMetadataToLocalContext({ error });
console.error("event=MessageProcessed", { ...context?.metadata });
}
});
}
function callFunctionThatAddsContext() {
addMetadataToLocalContext({ operation: "dataFetch", status: "success" });
}
function callFunctionThatCallsAnotherFunctionThatAddsContext() {
addMetadataToLocalContext({ operation: "validate", validationStep: "pre-check" });
callAnotherFunctionThatAddsContext();
}
function callAnotherFunctionThatAddsContext() {
addMetadataToLocalContext({
operation: "validate",
validationStep: "post-check",
result: "passed",
});
}
Local development commands
See package.json
scripts
for a list of commands.