You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trigger.dev is an opensource platform and SDK which allows you to create long-running background jobs. Write normal async code, deploy, and never hit a timeout.
27
+
Trigger.dev is the open-source platform for building AI workflows in TypeScript. Long-running tasks with retries, queues, observability, and elastic scaling.
19
28
20
29
### Key features:
21
30
22
31
- JavaScript and TypeScript SDK
23
-
-No timeouts
32
+
-Long-running tasks with retries, queues, observability, and elastic scaling
24
33
- Retries (with exponential backoff)
25
34
- Queues and concurrency controls
26
35
- Schedules and crons
@@ -38,7 +47,7 @@ Trigger.dev is an open source platform and SDK which allows you to create long-r
38
47
Create tasks where they belong: in your codebase. Version control, localhost, test and review like you're already used to.
39
48
40
49
```ts
41
-
import { task } from"@trigger.dev/sdk/v3";
50
+
import { task } from"@trigger.dev/sdk";
42
51
43
52
//1. You need to export each task
44
53
exportconst helloWorld =task({
@@ -58,7 +67,7 @@ Use our SDK to write tasks in your codebase. There's no infrastructure to manage
58
67
59
68
## Environments
60
69
61
-
We support `Development`, `Staging`, and `Production` environments, allowing you to test your tasks before deploying them to production.
70
+
We support `Development`, `Staging`, `Preview`, and `Production` environments, allowing you to test your tasks before deploying them to production.
0 commit comments