Workflow SDK now runs natively in Nitro v3 (opens in new tab)
**Published:** June 13, 2026 | **Authors:** Rihan Arfan --- Workflow SDK's native Nitro v3 integration is now in beta. Steps run inside the same bundled runtime as the rest of your app, instead of a separate bundle. Nitro's `useStorage()` and other server-side APIs work directly inside `"use step"` functions. **workflows/sync-user.ts** ```typescript import { useStorage } from "nitro/storage"; export async function getUserPreferences(userId: string) { "use step"; const storage = useStorage...
Read the original article