Add DBOS To Your App
This guide shows you how to add the open-source DBOS Transact library to your existing application to durably execute it and make it resilient to any failure.
Also check out the integration guides for popular TypeScript frameworks:
Using DBOS Transact
1. Install DBOS
npm install
DBOS into your application. Note that DBOS requires Node.js 20 or later.
npm install @dbos-inc/dbos-sdk
Then, enable TypeScript decorators in your tsconfig.json
file:
"compilerOptions": {
"experimentalDecorators": true,
}
2. Initialize DBOS in Your App
In your app's main entrypoint, add the following code. This initializes DBOS when your app starts.
import { DBOS } from "@dbos-inc/dbos-sdk";
DBOS.setConfig({
"name": "my-app",
"databaseUrl": process.env.DBOS_DATABASE_URL
});
await DBOS.launch();
3. Start Your Application
Try starting your application.
When DBOS.launch()
is called, it will attempt to connect to a Postgres database.
If your project already uses Postgres, set the DBOS_DATABASE_URL
environment variable to a connection string to your Postgres database.
Otherwise, DBOS will automatically guide you through launching a new Postgres database (using Docker if available, else DBOS Cloud) and connecting to it.
After you've connected to Postgres, your app should run normally, but log DBOS launched
on startup.
Congratulations! You've integrated DBOS into your application.
4. Start Building With DBOS
At this point, you can add any DBOS decorator or method to your application. For example, you can annotate one of your functions as a workflow and the functions it calls as steps. DBOS durably executes the workflow so if it is ever interrupted, upon restart it automatically resumes from the last completed step.
export class Example {
@DBOS.step()
static async myStep(n) {
DBOS.logger.info(`Step ${n} completed!`);
}
@DBOS.workflow()
static async exampleWorkflow() {
await Example.myStep(1);
await Example.myStep(2);
}
}
To ensure that DBOS registers all decorated functions, declare all DBOS-decorated functions before running await DBOS.launch()
.
You can add DBOS to your application incrementally—it won't interfere with code that's already there. It's totally okay for your application to have one DBOS workflow alongside thousands of lines of non-DBOS code.
To learn more about programming with DBOS, check out the programming guide.