@upstash/qstash 0.0.18 → 0.1.2
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
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
# Upstash qStash SDK
|
|
2
2
|
|
|
3
|
-
[](https://github.com/upstash/sdk-qstash-ts/actions/workflows/tests.yaml)
|
|
4
4
|

|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
**qStash** is
|
|
8
|
-
|
|
7
|
+
**qStash** is an HTTP based messaging and scheduling solution for serverless and
|
|
8
|
+
edge runtimes.
|
|
9
9
|
|
|
10
|
-
It is
|
|
10
|
+
It is 100% built on stateless HTTP requests and designed for:
|
|
11
11
|
|
|
12
12
|
- Serverless functions (AWS Lambda ...)
|
|
13
13
|
- Cloudflare Workers (see
|
|
14
|
-
[the example](https://github.com/upstash/
|
|
15
|
-
- Fastly Compute@Edge
|
|
16
|
-
|
|
17
|
-
-
|
|
14
|
+
[the example](https://github.com/upstash/sdk-qstash-ts/tree/main/examples/cloudflare-workers))
|
|
15
|
+
- Fastly Compute@Edge
|
|
16
|
+
- Next.js, including [edge](https://nextjs.org/docs/api-reference/edge-runtime)
|
|
17
|
+
- Deno
|
|
18
18
|
- Client side web/mobile applications
|
|
19
19
|
- WebAssembly
|
|
20
20
|
- and other environments where HTTP is preferred over TCP.
|
|
@@ -51,7 +51,7 @@ npm install @upstash/qstash
|
|
|
51
51
|
#### Deno
|
|
52
52
|
|
|
53
53
|
```ts
|
|
54
|
-
import {
|
|
54
|
+
import { Client } from "https://deno.land/x/upstash_qstash/mod.ts";
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
### Get your authorization token
|
package/package.json
CHANGED