@pipedream/qstash 0.0.3 → 0.0.4
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 +7 -27
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -1,31 +1,11 @@
|
|
|
1
1
|
# Overview
|
|
2
2
|
|
|
3
|
-
QStash offers
|
|
4
|
-
their cloud storage service. With the QStash API, developers can build a wide
|
|
5
|
-
range of applications and services that work with large datasets for data
|
|
6
|
-
retrieval and analysis. Here are some examples of what can be built using the
|
|
7
|
-
QStash API:
|
|
3
|
+
QStash API offers a secure, scalable, and simple way to manage message queues and defer tasks. Using this API, you can enqueue messages, schedule tasks to run after a delay, and ensure that tasks are executed exactly once, leveraging the power of serverless architecture. With Pipedream's ability to connect to a multitude of services, you can build complex workflows that trigger actions in other apps based on events in QStash, allowing you to automate cross-application business processes with ease.
|
|
8
4
|
|
|
9
|
-
|
|
10
|
-
developers can build online event platform applications which allow users to
|
|
11
|
-
store their event data securely in the cloud, and then access it remotely via
|
|
12
|
-
their web or mobile applications.
|
|
13
|
-
- Image Processing & Retrieval Platforms - With the QStash API, developers can
|
|
14
|
-
build an application that will allow users to easily and securely store and
|
|
15
|
-
access large digital images in the cloud. The application can be used to
|
|
16
|
-
process and retrieve images based on various criteria, such as size,
|
|
17
|
-
location, etc.
|
|
18
|
-
- Cloud-Based Data Analysis Platforms - With the QStash API, developers can
|
|
19
|
-
create cloud-based data analysis platforms that allow users to store large
|
|
20
|
-
datasets like transaction logs, customer behavior data, etc. in the cloud and
|
|
21
|
-
analyze them from a secure remote environment.
|
|
22
|
-
- Data Management Systems - Developers can also use the QStash API to create
|
|
23
|
-
cloud-based data management systems which allow users to store and manage
|
|
24
|
-
large datasets in the cloud, and access and analyze them from any location.
|
|
25
|
-
- Big Data Applications - Big data applications can also be built using the
|
|
26
|
-
QStash API which allow users to store and process large datasets at scale.
|
|
5
|
+
# Example Use Cases
|
|
27
6
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
7
|
+
- **Delayed Order Processing**: Automate the handling of orders that require a delayed processing step. For instance, after an order is received, you can use QStash to delay notification for manual review, and after the set delay, trigger a workflow in Pipedream that checks the order for fraud, and then proceeds with shipping confirmation.
|
|
8
|
+
|
|
9
|
+
- **Scheduled Content Publishing**: Perfect for managing social media or blog content schedules. When a content piece is ready, push it to QStash with a scheduled release time. Pipedream can then listen for the message to be dequeued and automatically publish the content to platforms like Twitter or WordPress.
|
|
10
|
+
|
|
11
|
+
- **Distributed Task Coordination**: In a microservices architecture, coordinating tasks across services can be challenging. Use QStash to queue tasks that are dependent on the completion of other services' tasks. Pipedream workflows can then act on task completion events, such as updating a database in Airtable or triggering a new deployment in Heroku, ensuring smooth inter-service operation.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/qstash",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Pipedream qstash Components",
|
|
5
5
|
"main": "qstash.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -11,5 +11,8 @@
|
|
|
11
11
|
"author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
|
|
12
12
|
"publishConfig": {
|
|
13
13
|
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"@pipedream/platform": "^3.1.0"
|
|
14
17
|
}
|
|
15
18
|
}
|