@hooklink/cli 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 +0 -24
- package/dist/index.js +1 -1
- package/package.json +1 -9
package/README.md
CHANGED
|
@@ -8,14 +8,6 @@ Forward webhooks to your local development machine via WebSocket tunnel.
|
|
|
8
8
|
npm install -g @hooklink/cli
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
Or use locally:
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
npm install
|
|
15
|
-
npm run build
|
|
16
|
-
npm link
|
|
17
|
-
```
|
|
18
|
-
|
|
19
11
|
## Quick Start
|
|
20
12
|
|
|
21
13
|
1. **Login with your API key:**
|
|
@@ -152,22 +144,6 @@ Configuration is stored in `~/.config/hooklink/config.json` (or OS-specific conf
|
|
|
152
144
|
4. The response from your local server is sent back through the WebSocket
|
|
153
145
|
5. HookLink returns the response to the original webhook sender
|
|
154
146
|
|
|
155
|
-
## Development
|
|
156
|
-
|
|
157
|
-
```bash
|
|
158
|
-
# Install dependencies
|
|
159
|
-
npm install
|
|
160
|
-
|
|
161
|
-
# Build TypeScript
|
|
162
|
-
npm run build
|
|
163
|
-
|
|
164
|
-
# Watch mode for development
|
|
165
|
-
npm run dev
|
|
166
|
-
|
|
167
|
-
# Link locally for testing
|
|
168
|
-
npm link
|
|
169
|
-
```
|
|
170
|
-
|
|
171
147
|
## Troubleshooting
|
|
172
148
|
|
|
173
149
|
### Connection Issues
|
package/dist/index.js
CHANGED
|
@@ -19,7 +19,7 @@ const program = new commander_1.Command();
|
|
|
19
19
|
program
|
|
20
20
|
.name('hooklink')
|
|
21
21
|
.description('HookLink CLI - Forward webhooks to your local development machine')
|
|
22
|
-
.version('0.1.
|
|
22
|
+
.version('0.1.1')
|
|
23
23
|
.exitOverride();
|
|
24
24
|
// ASCII art banner
|
|
25
25
|
const banner = `
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hooklink/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "HookLink CLI - Forward webhooks to your local development machine",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -30,15 +30,7 @@
|
|
|
30
30
|
],
|
|
31
31
|
"author": "HookLink",
|
|
32
32
|
"license": "MIT",
|
|
33
|
-
"repository": {
|
|
34
|
-
"type": "git",
|
|
35
|
-
"url": "https://github.com/hooklink/hooklink.git",
|
|
36
|
-
"directory": "packages/cli"
|
|
37
|
-
},
|
|
38
33
|
"homepage": "https://hooklink.net",
|
|
39
|
-
"bugs": {
|
|
40
|
-
"url": "https://github.com/hooklink/hooklink/issues"
|
|
41
|
-
},
|
|
42
34
|
"engines": {
|
|
43
35
|
"node": ">=18"
|
|
44
36
|
},
|