@dbos-inc/dbos-sdk 1.23.8 → 1.24.4-preview.g41ac93c360
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -13
- package/package.json +1 -1
package/README.md
CHANGED
@@ -4,10 +4,10 @@ DBOS Transact is a **modern TypeScript framework** for backend applications.
|
|
4
4
|
|
5
5
|
You want to build your next application with DBOS Transact because you need:
|
6
6
|
|
7
|
-
- **
|
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/
|
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
|
-
- **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/
|
7
|
+
- **Durable execution**. If your app is interrupted for any reason, it [automatically resumes from where it left off](https://docs.dbos.dev/typescript/tutorials/workflow-tutorial). Reliable message delivery is [built in](https://docs.dbos.dev/typescript/tutorials/workflow-communication-tutorial). Idempotency is [built in](https://docs.dbos.dev/typescript/tutorials/idempotency-tutorial).
|
8
|
+
- **Built-in observability**. Automatically emit [OpenTelemetry](https://opentelemetry.io/)-compatible [logs and traces](https://docs.dbos.dev/typescript/tutorials/logging) from any application. Query your app's history from the [command line](https://docs.dbos.dev/typescript/reference/cli#workflow-management-commands) or [with SQL](https://docs.dbos.dev/explanations/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 [Drizzle](https://docs.dbos.dev/typescript/tutorials/using-drizzle), [Knex](https://docs.dbos.dev/typescript/tutorials/using-knex), [TypeORM](https://docs.dbos.dev/typescript/tutorials/using-typeorm), and [Prisma](https://docs.dbos.dev/typescript/tutorials/using-prisma) out of the box.
|
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/quickstart) 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
|
13
13
|
|
@@ -23,15 +23,15 @@ 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 [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
|
-
| [Workflows](https://docs.dbos.dev/tutorials/workflow-tutorial) | Reliable workflow orchestration—resume your program after any failure.
|
28
|
-
| [HTTP Serving](https://docs.dbos.dev/tutorials/http-serving-tutorial) | Set up endpoints to serve requests from your application.
|
29
|
-
| [Idempotency](https://docs.dbos.dev/tutorials/idempotency-tutorial) | Automatically make any request idempotent, so your requests happen exactly once.
|
30
|
-
| [Authentication and Authorization](https://docs.dbos.dev/tutorials/authentication-authorization) | Secure your HTTP endpoints so only authorized users can access them.
|
31
|
-
| [Kafka Integration](https://docs.dbos.dev/tutorials/kafka-integration) | Consume Kafka messages exactly-once with transactions or workflows.
|
32
|
-
| [Scheduled Workflows](https://docs.dbos.dev/tutorials/scheduled-workflows) | Schedule your workflows to run exactly-once per time interval with cron-like syntax.
|
33
|
-
| [Testing and Debugging](https://docs.dbos.dev/tutorials/testing-tutorial) | Easily write unit tests for your applications, compatible with Jest and other popular testing frameworks.
|
34
|
-
| [Self-Hosting](https://docs.dbos.dev/tutorials/self-hosting) | Host your applications anywhere, as long as they have a Postgres database to connect to.
|
26
|
+
| [Transactions](https://docs.dbos.dev/typescript/tutorials/transaction-tutorial) | Easily and safely query your application database using [Drizzle](https://docs.dbos.dev/typescript/tutorials/using-drizzle), [Knex](https://docs.dbos.dev/typescript/tutorials/using-knex), [TypeORM](https://docs.dbos.dev/typescript/tutorials/using-typeorm), [Prisma](https://docs.dbos.dev/typescript/tutorials/using-prisma), or raw SQL.
|
27
|
+
| [Workflows](https://docs.dbos.dev/typescript/tutorials/workflow-tutorial) | Reliable workflow orchestration—resume your program after any failure.
|
28
|
+
| [HTTP Serving](https://docs.dbos.dev/typescript/tutorials/http-serving-tutorial) | Set up endpoints to serve requests from your application.
|
29
|
+
| [Idempotency](https://docs.dbos.dev/typescript/tutorials/idempotency-tutorial) | Automatically make any request idempotent, so your requests happen exactly once.
|
30
|
+
| [Authentication and Authorization](https://docs.dbos.dev/typescript/tutorials/authentication-authorization) | Secure your HTTP endpoints so only authorized users can access them.
|
31
|
+
| [Kafka Integration](https://docs.dbos.dev/typescript/tutorials/kafka-integration) | Consume Kafka messages exactly-once with transactions or workflows.
|
32
|
+
| [Scheduled Workflows](https://docs.dbos.dev/typescript/tutorials/scheduled-workflows) | Schedule your workflows to run exactly-once per time interval with cron-like syntax.
|
33
|
+
| [Testing and Debugging](https://docs.dbos.dev/typescript/tutorials/testing-tutorial) | Easily write unit tests for your applications, compatible with Jest and other popular testing frameworks.
|
34
|
+
| [Self-Hosting](https://docs.dbos.dev/typescript/tutorials/self-hosting) | Host your applications anywhere, as long as they have a Postgres database to connect to.
|
35
35
|
|
36
36
|
And DBOS Cloud:
|
37
37
|
|