@dbos-inc/dbos-sdk 1.21.20-preview.g3dc37cbd72 → 1.22.4-preview
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
@@ -6,7 +6,7 @@ You want to build your next application with DBOS Transact because you need:
|
|
6
6
|
|
7
7
|
- **Resilience to any failure**. If your app is interrupted for any reason, it [automatically resumes from where it left off](https://docs.dbos.dev/tutorials/workflow-tutorial#reliability-guarantees). Reliable message delivery is [built in](https://docs.dbos.dev/tutorials/workflow-communication-tutorial#reliability-guarantees-1). Idempotency is [built in](https://docs.dbos.dev/tutorials/idempotency-tutorial).
|
8
8
|
- **Built-in observability**. Automatically emit [OpenTelemetry](https://opentelemetry.io/)-compatible [logs and traces](https://docs.dbos.dev/tutorials/logging) from any application. Query your app's history from the [command line](https://docs.dbos.dev/api-reference/cli#workflow-management-commands) or [with SQL](https://docs.dbos.dev/api-reference/system-tables).
|
9
|
-
- **A framework built for the tools you love**. Build with TypeScript and **any** PostgreSQL-compatible database. Use raw SQL or your favorite query builder or ORM—we support [Knex](https://docs.dbos.dev/tutorials/using-knex), [TypeORM](https://docs.dbos.dev/tutorials/using-typeorm), and [Prisma](https://docs.dbos.dev/tutorials/using-prisma) out of the box.
|
9
|
+
- **A framework built for the tools you love**. Build with TypeScript and **any** PostgreSQL-compatible database. Use raw SQL or your favorite query builder or ORM—we support [Drizzle](https://docs.dbos.dev/tutorials/using-drizzle), [Knex](https://docs.dbos.dev/tutorials/using-knex), [TypeORM](https://docs.dbos.dev/tutorials/using-typeorm), and [Prisma](https://docs.dbos.dev/tutorials/using-prisma) out of the box.
|
10
10
|
- **Blazing-fast, developer-friendly serverless**. Develop your project locally and run it anywhere. When you're ready, [deploy it for free to DBOS Cloud](https://docs.dbos.dev/getting-started/quickstart#deploying-to-dbos-cloud) and we'll host it for you, [25x faster](https://www.dbos.dev/blog/dbos-vs-aws-step-functions-benchmark) and [15x cheaper](https://www.dbos.dev/blog/dbos-vs-lambda-cost) than AWS Lambda.
|
11
11
|
|
12
12
|
## Getting Started
|
@@ -23,7 +23,7 @@ Here are some of the core features of DBOS Transact:
|
|
23
23
|
|
24
24
|
| Feature | Description
|
25
25
|
| ----------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
|
26
|
-
| [Transactions](https://docs.dbos.dev/tutorials/transaction-tutorial) | Easily and safely query your application database using [Knex](https://docs.dbos.dev/tutorials/using-knex), [TypeORM](https://docs.dbos.dev/tutorials/using-typeorm), [Prisma](https://docs.dbos.dev/tutorials/using-prisma), or raw SQL.
|
26
|
+
| [Transactions](https://docs.dbos.dev/tutorials/transaction-tutorial) | Easily and safely query your application database using [Drizzle](https://docs.dbos.dev/tutorials/using-drizzle), [Knex](https://docs.dbos.dev/tutorials/using-knex), [TypeORM](https://docs.dbos.dev/tutorials/using-typeorm), [Prisma](https://docs.dbos.dev/tutorials/using-prisma), or raw SQL.
|
27
27
|
| [Workflows](https://docs.dbos.dev/tutorials/workflow-tutorial) | Reliable workflow orchestration—resume your program after any failure.
|
28
28
|
| [HTTP Serving](https://docs.dbos.dev/tutorials/http-serving-tutorial) | Set up endpoints to serve requests from your application.
|
29
29
|
| [Idempotency](https://docs.dbos.dev/tutorials/idempotency-tutorial) | Automatically make any request idempotent, so your requests happen exactly once.
|