hookreplay 1.0.0 → 1.0.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 +3 -8
- package/package.json +2 -9
- package/scripts/install.js +2 -2
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ pnpm add -g hookreplay
|
|
|
17
17
|
|
|
18
18
|
## Quick Start
|
|
19
19
|
|
|
20
|
-
1. **Get an API key** from [hookreplay.
|
|
20
|
+
1. **Get an API key** from [hookreplay.dev/settings/api-keys](https://hookreplay.dev/settings/api-keys)
|
|
21
21
|
|
|
22
22
|
2. **Configure and connect:**
|
|
23
23
|
```bash
|
|
@@ -48,7 +48,7 @@ pnpm add -g hookreplay
|
|
|
48
48
|
Webhook Provider → HookReplay → CLI → localhost:3000
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
1. Create a webhook endpoint at [hookreplay.
|
|
51
|
+
1. Create a webhook endpoint at [hookreplay.dev](https://hookreplay.dev)
|
|
52
52
|
2. Point your webhook provider to your HookReplay URL
|
|
53
53
|
3. Webhooks are captured and stored
|
|
54
54
|
4. Connect CLI and click "Send to CLI" to forward to localhost
|
|
@@ -62,16 +62,11 @@ dotnet tool install --global HookReplay.Cli
|
|
|
62
62
|
|
|
63
63
|
# Homebrew (macOS)
|
|
64
64
|
brew install hookreplay/tap/hookreplay
|
|
65
|
-
|
|
66
|
-
# Direct download
|
|
67
|
-
# https://github.com/hookreplay/hookreplay/releases
|
|
68
65
|
```
|
|
69
66
|
|
|
70
67
|
## Links
|
|
71
68
|
|
|
72
|
-
- **Website:** https://hookreplay.
|
|
73
|
-
- **GitHub:** https://github.com/hookreplay/hookreplay
|
|
74
|
-
- **Issues:** https://github.com/hookreplay/hookreplay/issues
|
|
69
|
+
- **Website:** https://hookreplay.dev
|
|
75
70
|
|
|
76
71
|
## License
|
|
77
72
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hookreplay",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Debug webhooks locally - capture, inspect, and replay webhooks to your local server",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webhook",
|
|
@@ -11,14 +11,7 @@
|
|
|
11
11
|
"http",
|
|
12
12
|
"tunnel"
|
|
13
13
|
],
|
|
14
|
-
"homepage": "https://hookreplay.
|
|
15
|
-
"bugs": {
|
|
16
|
-
"url": "https://github.com/hookreplay/hookreplay/issues"
|
|
17
|
-
},
|
|
18
|
-
"repository": {
|
|
19
|
-
"type": "git",
|
|
20
|
-
"url": "https://github.com/hookreplay/hookreplay.git"
|
|
21
|
-
},
|
|
14
|
+
"homepage": "https://hookreplay.dev",
|
|
22
15
|
"license": "MIT",
|
|
23
16
|
"author": "HookReplay",
|
|
24
17
|
"bin": {
|
package/scripts/install.js
CHANGED
|
@@ -7,7 +7,7 @@ const { execSync } = require('child_process');
|
|
|
7
7
|
const zlib = require('zlib');
|
|
8
8
|
|
|
9
9
|
const VERSION = require('../package.json').version;
|
|
10
|
-
const GITHUB_REPO = '
|
|
10
|
+
const GITHUB_REPO = 'ahmedmandur/hookreplay';
|
|
11
11
|
|
|
12
12
|
// Platform mapping
|
|
13
13
|
const PLATFORMS = {
|
|
@@ -150,7 +150,7 @@ async function install() {
|
|
|
150
150
|
console.error('Alternative installation methods:');
|
|
151
151
|
console.error(' - dotnet tool install --global HookReplay.Cli');
|
|
152
152
|
console.error(' - brew install hookreplay/tap/hookreplay (macOS)');
|
|
153
|
-
console.error(' -
|
|
153
|
+
console.error(' - Visit https://hookreplay.dev for more options');
|
|
154
154
|
process.exit(1);
|
|
155
155
|
}
|
|
156
156
|
}
|