orpc-file-based-router 0.0.9 → 0.0.11

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 +10 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,7 +1,15 @@
1
1
  # orpc-file-based-router
2
2
 
3
- A plugin for [oRPC](https://orpc.unnoq.com) that automatically creates an oRPC
4
- router configuration based on your file structure.
3
+ A plugin for [oRPC](https://orpc.unnoq.com) that automatically creates an oRPC router configuration based on your file
4
+ structure, similar to Next.js, express-file-routing
5
+
6
+ ## Highlights
7
+
8
+ - 📁 **File-based structure**: Organize your API endpoints intuitively through your filesystem
9
+ - 🔄 **Zero configuration**: Generate routes automatically based on your directory structure
10
+ - ⚡️ **Development speed**: Eliminate boilerplate code and reduce maintenance overhead
11
+ - 🔍 **Dynamic routing**: Support for path parameters using {param} syntax in file names
12
+ - 📑 **Index handling**: Support for index routes via index.ts files
5
13
 
6
14
  > ⚠️ **IMPORTANT:** At this time, the plugin's functionality is only guaranteed
7
15
  > in nodejs runtime
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orpc-file-based-router",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "description": "File-based router plugin for oRPC - automatically generate oRPC router from your file structure",
5
5
  "author": "zeeeeby",
6
6
  "license": "MIT",