dashcam 0.5.1 → 0.5.5
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 +19 -0
- package/package.json +1 -1
- package/recorder.js +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,25 @@ Add Dashcam to your app or workflow. This package allows you to capture logs and
|
|
|
6
6
|
|
|
7
7
|
Requires that you [install Dashcam Desktop](https://dashcam.io).
|
|
8
8
|
|
|
9
|
+
# Manual
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
Usage: dashcam [options] [command]
|
|
13
|
+
|
|
14
|
+
Capture the steps to reproduce every bug.
|
|
15
|
+
|
|
16
|
+
Options:
|
|
17
|
+
-V, --version output the version number
|
|
18
|
+
-h, --help display help for command
|
|
19
|
+
|
|
20
|
+
Commands:
|
|
21
|
+
create [options] Create a clip and output the resulting url or markdown. Will launch desktop app for local editing before publishing.
|
|
22
|
+
record [options] Start a recording terminal to be included in your dashcam video recording
|
|
23
|
+
pipe Pipe command output to dashcam to be included in recorded video
|
|
24
|
+
start Start instant replay recording on dashcam
|
|
25
|
+
help [command] display help for command
|
|
26
|
+
```
|
|
27
|
+
|
|
9
28
|
## Table of contents
|
|
10
29
|
|
|
11
30
|
- [CLI](#cli)
|
package/package.json
CHANGED