We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d009937 commit 00adfa6Copy full SHA for 00adfa6
README.md
@@ -0,0 +1,25 @@
1
+# Aren Framework
2
+
3
+> *A Simple C++ Web Framework, support REST API Development*
4
5
+## Features (In-Development)
6
7
+- **Zero Setup** : Header-only,dependencies auto-download
8
+- **Microservice Ready** : Sub-routers & health checks
9
+- **Security built-in** : JWT,CORS,Rate Limiting
10
11
+---
12
13
+## Quick Start (~5 minutes)
14
15
+```bash
16
+# Install CLI
17
+curl -L https://github.com/yourusername/aren-framework/releases/latest/download/aren -o /usr/local/bin/aren
18
+chmod +x /usr/local/bin/aren
19
20
+# Create project
21
+aren new my-api
22
+cd my-api
23
24
+# Run dev server
25
+aren dev
0 commit comments