screenbook 1.1.1 → 1.1.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 +10 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<picture>
|
|
3
|
-
<source media="(prefers-color-scheme: dark)" srcset="assets/logo/logo.svg">
|
|
4
|
-
<source media="(prefers-color-scheme: light)" srcset="assets/logo/logo-dark.svg">
|
|
5
|
-
<img alt="Screenbook" src="assets/logo/logo-dark.svg" height="48">
|
|
3
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/wadakatu/screenbook/main/assets/logo/logo.svg">
|
|
4
|
+
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/wadakatu/screenbook/main/assets/logo/logo-dark.svg">
|
|
5
|
+
<img alt="Screenbook" src="https://raw.githubusercontent.com/wadakatu/screenbook/main/assets/logo/logo-dark.svg" height="48">
|
|
6
6
|
</picture>
|
|
7
7
|
</p>
|
|
8
8
|
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
</p>
|
|
12
12
|
|
|
13
13
|
<p align="center">
|
|
14
|
-
<img src="assets/screenshots/hero.png" alt="Screenbook Hero" width="800">
|
|
14
|
+
<img src="https://raw.githubusercontent.com/wadakatu/screenbook/main/assets/screenshots/hero.png" alt="Screenbook Hero" width="800">
|
|
15
15
|
</p>
|
|
16
16
|
|
|
17
17
|
<p align="center">
|
|
@@ -34,25 +34,25 @@
|
|
|
34
34
|
|
|
35
35
|
### Screen Catalog
|
|
36
36
|
|
|
37
|
-
<img src="assets/screenshots/screens.png" alt="Screen Catalog" width="700">
|
|
37
|
+
<img src="https://raw.githubusercontent.com/wadakatu/screenbook/main/assets/screenshots/screens.png" alt="Screen Catalog" width="700">
|
|
38
38
|
|
|
39
39
|
Browse all screens in your application. **Search by name, filter by tags, find by owner.** Every screen shows its route, dependencies, and navigation connections.
|
|
40
40
|
|
|
41
41
|
### Navigation Graph
|
|
42
42
|
|
|
43
|
-
<img src="assets/screenshots/graph.png" alt="Navigation Graph" width="700">
|
|
43
|
+
<img src="https://raw.githubusercontent.com/wadakatu/screenbook/main/assets/screenshots/graph.png" alt="Navigation Graph" width="700">
|
|
44
44
|
|
|
45
45
|
**Visualize how users flow through your app.** See the big picture at a glance. Understand navigation paths without reading code.
|
|
46
46
|
|
|
47
47
|
### Impact Analysis
|
|
48
48
|
|
|
49
|
-
<img src="assets/screenshots/impact.png" alt="Impact Analysis" width="700">
|
|
49
|
+
<img src="https://raw.githubusercontent.com/wadakatu/screenbook/main/assets/screenshots/impact.png" alt="Impact Analysis" width="700">
|
|
50
50
|
|
|
51
51
|
**Changing an API? Know exactly which screens break — before you ship.** Enter an API name and instantly see all affected screens, both direct and transitive dependencies.
|
|
52
52
|
|
|
53
53
|
### Coverage Dashboard
|
|
54
54
|
|
|
55
|
-
<img src="assets/screenshots/coverage.png" alt="Coverage Report" width="700">
|
|
55
|
+
<img src="https://raw.githubusercontent.com/wadakatu/screenbook/main/assets/screenshots/coverage.png" alt="Coverage Report" width="700">
|
|
56
56
|
|
|
57
57
|
**Track documentation completeness across your app.** See coverage by owner and tag. Find gaps. Enforce coverage in CI to prevent drift.
|
|
58
58
|
|
|
@@ -62,6 +62,8 @@ Browse all screens in your application. **Search by name, filter by tags, find b
|
|
|
62
62
|
|
|
63
63
|
```bash
|
|
64
64
|
# Install
|
|
65
|
+
npm i -D screenbook
|
|
66
|
+
# or
|
|
65
67
|
pnpm add -D screenbook
|
|
66
68
|
|
|
67
69
|
# Initialize configuration
|