This repo contains a JavaScript/TypeScript SDK for use with the Azure Durable Task Scheduler. With this SDK, you can define, schedule, and manage durable orchestrations using ordinary TypeScript/JavaScript code.
Note that this SDK is not currently compatible with Azure Durable Functions. If you are looking for a JavaScript SDK for Azure Durable Functions, please see this repo.
The following npm packages are available for download.
| Name | Latest version | Description |
|---|---|---|
| Core SDK | Core Durable Task SDK for JavaScript/TypeScript. | |
| AzureManaged SDK | Azure-managed Durable Task Scheduler support for the Durable Task JavaScript SDK. |
- Node.js 22 or higher
- An Azure Durable Task Scheduler instance, or the DTS Emulator for local development
This SDK can be used with the Durable Task Scheduler, a managed backend for running durable orchestrations in Azure.
To get started, install the npm packages:
npm install @microsoft/durabletask-js @microsoft/durabletask-js-azuremanagedYou can then use the following code to define a simple "Hello, cities" durable orchestration.
import {
ActivityContext,
OrchestrationContext,
TOrchestrator,
} from "@microsoft/durabletask-js";
import {
createAzureManagedClient,
createAzureManagedWorkerBuilder,
} from "@microsoft/durabletask-js-azuremanaged";
// Define an activity function
const sayHello = async (_: ActivityContext, name: string): Promise<string> => {
return `Hello, ${name}!`;
};
// Define an orchestrator function
const helloCities: TOrchestrator = async function* (ctx: OrchestrationContext): any {
const result1 = yield ctx.callActivity(sayHello, "Tokyo");
const result2 = yield ctx.callActivity(sayHello, "London");
const result3 = yield ctx.callActivity(sayHello, "Seattle");
return [result1, result2, result3];
};
// Create client and worker using a connection string
const connectionString = process.env.DURABLE_TASK_SCHEDULER_CONNECTION_STRING!;
const client = createAzureManagedClient(connectionString);
const worker = createAzureManagedWorkerBuilder(connectionString)
.addOrchestrator(helloCities)
.addActivity(sayHello)
.build();
// Start the worker and schedule an orchestration
await worker.start();
const id = await client.scheduleNewOrchestration(helloCities);
const state = await client.waitForOrchestrationCompletion(id, true, 60);
console.log(`Result: ${state?.serializedOutput}`);You can find more samples in the examples/azure-managed directory.
The following orchestration patterns are supported.
The getting-started example above demonstrates function chaining, where an orchestration calls a sequence of activities one after another. You can find the full sample at examples/hello-world/activity-sequence.ts.
An orchestration can fan-out a dynamic number of function calls in parallel and then fan-in the results:
import { whenAll } from "@microsoft/durabletask-js";
const orchestrator: TOrchestrator = async function* (ctx: OrchestrationContext): any {
const workItems = yield ctx.callActivity(getWorkItems);
const tasks = [];
for (const item of workItems) {
tasks.push(ctx.callActivity(processWorkItem, item));
}
const results: number[] = yield whenAll(tasks);
return results.reduce((sum, val) => sum + val, 0);
};You can find the full sample at examples/hello-world/fanout-fanin.ts.
An orchestration can wait for external events, such as a human approval, with optional timeout handling:
import { whenAny } from "@microsoft/durabletask-js";
const purchaseOrderWorkflow: TOrchestrator = async function* (
ctx: OrchestrationContext,
order: Order,
): any {
// Orders under $1000 are auto-approved
if (order.cost < 1000) {
return "Auto-approved";
}
// Orders of $1000 or more require manager approval
yield ctx.callActivity(sendApprovalRequest, order);
// Approvals must be received within 24 hours or they will be canceled
const approvalEvent = ctx.waitForExternalEvent("approval_received");
const timeoutEvent = ctx.createTimer(24 * 60 * 60);
const winner = yield whenAny([approvalEvent, timeoutEvent]);
if (winner == timeoutEvent) {
return "Cancelled";
}
yield ctx.callActivity(placeOrder, order);
const approvalDetails = approvalEvent.getResult();
return `Approved by ${approvalDetails.approver}`;
};You can find the full sample at examples/hello-world/human_interaction.ts.
Durable entities provide a way to manage small pieces of state with a simple object-oriented programming model:
import { TaskEntity } from "@microsoft/durabletask-js";
interface CounterState {
value: number;
}
class CounterEntity extends TaskEntity<CounterState> {
add(amount: number): number {
this.state.value += amount;
return this.state.value;
}
get(): number {
return this.state.value;
}
reset(): void {
this.state.value = 0;
}
protected initializeState(): CounterState {
return { value: 0 };
}
}
// Register with the worker
worker.addNamedEntity("Counter", () => new CounterEntity());You can find the full entity samples at examples/entity-counter and examples/entity-orchestration.
This project utilizes protobuf definitions from durabletask-protobuf. To download the latest proto files, run:
npm run download-protoThis will download the proto files to internal/durabletask-protobuf/protos/. Once the proto files are available, the corresponding TypeScript source code can be regenerated using:
npm run generate-grpcThis project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.