orpc-file-based-router 0.0.10 → 0.0.12
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 +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,11 +5,11 @@ structure, similar to Next.js, express-file-routing
|
|
|
5
5
|
|
|
6
6
|
## Highlights
|
|
7
7
|
|
|
8
|
-
- 📁 File-based structure
|
|
9
|
-
- 🔄 Zero configuration
|
|
10
|
-
- ⚡️ Development speed
|
|
11
|
-
- 🔍 Dynamic routing
|
|
12
|
-
- 📑 Index handling
|
|
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
|
|
13
13
|
|
|
14
14
|
> ⚠️ **IMPORTANT:** At this time, the plugin's functionality is only guaranteed
|
|
15
15
|
> in nodejs runtime
|
package/package.json
CHANGED