debug-run 0.5.5 → 0.5.6
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.
|
@@ -18,10 +18,14 @@ Use the `debug-run` CLI tool to programmatically debug applications via the Debu
|
|
|
18
18
|
|
|
19
19
|
## Prerequisites
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
debug-run is available via npx (no installation required) or can be installed globally:
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
|
|
24
|
+
# Run directly with npx
|
|
25
|
+
npx debug-run --help
|
|
26
|
+
|
|
27
|
+
# Or install globally
|
|
28
|
+
npm install -g debug-run
|
|
25
29
|
```
|
|
26
30
|
|
|
27
31
|
Check available adapters:
|