@emkodev/emroute 1.6.0 → 1.6.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 +6 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="doc/logo-full.png" alt="emroute" width="197" height="40">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/emko-io/emroute/main/doc/logo-full.png" alt="emroute" width="197" height="40">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
@@ -35,15 +35,15 @@ for emroute) or bring your own — [marked](doc/08a-setup-marked.md) and
|
|
|
35
35
|
## How It Works
|
|
36
36
|
|
|
37
37
|
<p align="center">
|
|
38
|
-
<img src="doc/diagram-full.png" alt="emroute architecture" width="480" height="480">
|
|
38
|
+
<img src="https://raw.githubusercontent.com/emko-io/emroute/main/doc/diagram-full.png" alt="emroute architecture" width="480" height="480">
|
|
39
39
|
</p>
|
|
40
40
|
|
|
41
41
|
One component, three rendering paths:
|
|
42
42
|
|
|
43
43
|
<p align="center">
|
|
44
|
-
<img src="doc/diagram-flow-spa.png" alt="SPA flow" width="320" height="320">
|
|
45
|
-
<img src="doc/diagram-flow-ssr-html.png" alt="SSR HTML flow" width="320" height="320">
|
|
46
|
-
<img src="doc/diagram-flow-ssr-md.png" alt="SSR Markdown flow" width="320" height="320">
|
|
44
|
+
<img src="https://raw.githubusercontent.com/emko-io/emroute/main/doc/diagram-flow-spa.png" alt="SPA flow" width="320" height="320">
|
|
45
|
+
<img src="https://raw.githubusercontent.com/emko-io/emroute/main/doc/diagram-flow-ssr-html.png" alt="SSR HTML flow" width="320" height="320">
|
|
46
|
+
<img src="https://raw.githubusercontent.com/emko-io/emroute/main/doc/diagram-flow-ssr-md.png" alt="SSR Markdown flow" width="320" height="320">
|
|
47
47
|
</p>
|
|
48
48
|
|
|
49
49
|
The SPA and SSR HTML flows both call `renderHTML()` — same output, different
|
|
@@ -154,4 +154,4 @@ See [Setup](doc/01-setup.md) and [First Route](doc/02-first-route.md).
|
|
|
154
154
|
|
|
155
155
|
- [Architectural decisions](doc/architecture/) — ADR-0001 through ADR-0017
|
|
156
156
|
|
|
157
|
-
<img src="doc/logo-full.png" alt="emroute" width="197" height="40">
|
|
157
|
+
<img src="https://raw.githubusercontent.com/emko-io/emroute/main/doc/logo-full.png" alt="emroute" width="197" height="40">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emkodev/emroute",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "File-based router with triple rendering (SPA, SSR HTML, SSR Markdown). Zero dependencies.",
|
|
5
5
|
"license": "BSD-3-Clause",
|
|
6
6
|
"author": "emko.dev",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
],
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
21
|
-
"url": "https://github.com/
|
|
21
|
+
"url": "https://github.com/emko-io/emroute.git"
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
24
|
"src/",
|