import { DurableObject } from "cloudflare:workers";
COUNTERS: DurableObjectNamespace<Counter>;
async fetch(request, env) {
let url = new URL(request.url);
let name = url.searchParams.get("name");
"Select a Durable Object to contact by using" +
" the `name` URL query string parameter, for example, ?name=A"
// Every unique ID refers to an individual instance of the Counter class that
// has its own state. `idFromName()` always returns the same ID when given the
// same string as input (and called on the same class), but never the same
// ID for two different strings (or for different classes).
let id = env.COUNTERS.idFromName(name);
// Construct the stub for the Durable Object using the ID.
// A stub is a client Object used to send messages to the Durable Object.
let stub = env.COUNTERS.get(id);
count = await stub.increment();
count = await stub.decrement();
// Serves the current value.
count = await stub.getCounterValue();
return new Response("Not found", { status: 404 });
return new Response(`Durable Object '${name}' count: ${count}`);
} satisfies ExportedHandler<Env>;
export class Counter extends DurableObject {
async getCounterValue() {
let value = (await this.ctx.storage.get("value")) || 0;
async increment(amount = 1) {
let value: number = (await this.ctx.storage.get("value")) || 0;
// You do not have to worry about a concurrent request having modified the value in storage.
// "input gates" will automatically protect against unwanted concurrency.
// Read-modify-write is safe.
await this.ctx.storage.put("value", value);
async decrement(amount = 1) {
let value: number = (await this.ctx.storage.get("value")) || 0;
await this.ctx.storage.put("value", value);