@pipedream/wappalyzer 0.1.0 → 0.1.1
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
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Overview
|
|
2
|
+
|
|
3
|
+
The Wappalyzer API lets you uncover the technology stack of any website. On Pipedream, you can integrate this capability into workflows to automate tech stack detection. Here's what you can do: identify the software used by your competitors, track technology adoption, and get insights into your target market's tech preferences. By leveraging Pipedream's robust platform, you can connect Wappalyzer with other services to create custom workflows that trigger actions based on the tech stack data you collect.
|
|
4
|
+
|
|
5
|
+
# Example Use Cases
|
|
6
|
+
|
|
7
|
+
- **Lead Generation for Web Development Services**: Detect tech stacks of potential leads' websites. If a site uses outdated frameworks, trigger an email through the SendGrid app, offering your services to modernize their web presence.
|
|
8
|
+
|
|
9
|
+
- **Market Research Automation**: Schedule daily checks on top industry websites, capture their tech stacks, and save the data in a Google Sheets spreadsheet for trend analysis and report generation.
|
|
10
|
+
|
|
11
|
+
- **Competitor Monitoring Alert System**: Monitor competitor websites for tech stack changes. Use Pipedream's built-in Cron Scheduler to run the workflow weekly, and if new technologies are detected, post a notification in a Slack channel to keep your team informed.
|
|
@@ -4,8 +4,14 @@ export default {
|
|
|
4
4
|
key: "wappalyzer-get-technologies",
|
|
5
5
|
name: "Get Technologies",
|
|
6
6
|
description: "Returns the details of technologies used on a specific URL. [See the documentation](https://www.wappalyzer.com/docs/api/v2/lookup/)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.3",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: true,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
14
|
+
ai: "optimized",
|
|
9
15
|
props: {
|
|
10
16
|
wappalyzer,
|
|
11
17
|
urls: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/wappalyzer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Pipedream Wappalyzer Components",
|
|
5
5
|
"main": "wappalyzer.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -13,6 +13,6 @@
|
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@pipedream/platform": "^1.
|
|
16
|
+
"@pipedream/platform": "^1.6.8"
|
|
17
17
|
}
|
|
18
18
|
}
|