@emkodev/emroute 1.0.3

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.
Files changed (2) hide show
  1. package/README.md +22 -0
  2. package/package.json +22 -0
package/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # @emkodev/emroute
2
+
3
+ File-based router with triple rendering (SPA, SSR HTML, SSR Markdown). Zero dependencies.
4
+
5
+ ## Install
6
+
7
+ This package is published on [JSR](https://jsr.io/@emkodev/emroute):
8
+
9
+ ```bash
10
+ # Deno
11
+ deno add jsr:@emkodev/emroute
12
+
13
+ # Node.js / Bun
14
+ npx jsr add @emkodev/emroute
15
+ ```
16
+
17
+ ## Documentation
18
+
19
+ - [GitHub](https://github.com/vedokme/emroute)
20
+ - [JSR](https://jsr.io/@emkodev/emroute)
21
+ - [Quick start](https://jsr.io/@emkodev/emroute/doc/quick-start.md)
22
+ - [Guide](https://jsr.io/@emkodev/emroute/doc/guide.md)
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@emkodev/emroute",
3
+ "version": "1.0.3",
4
+ "description": "File-based router with triple rendering (SPA, SSR HTML, SSR Markdown). Zero dependencies.",
5
+ "license": "BSD-3-Clause",
6
+ "author": "emko.dev",
7
+ "homepage": "https://jsr.io/@emkodev/emroute",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/vedokme/emroute.git"
11
+ },
12
+ "keywords": [
13
+ "router",
14
+ "routing",
15
+ "spa",
16
+ "ssr",
17
+ "file-based",
18
+ "framework",
19
+ "typescript",
20
+ "markdown"
21
+ ]
22
+ }