create-ereo 0.1.32 → 0.1.35

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 (3) hide show
  1. package/README.md +25 -14
  2. package/dist/index.js +1926 -33
  3. package/package.json +4 -4
package/README.md CHANGED
@@ -34,23 +34,18 @@ bun run dev
34
34
  Choose from multiple starter templates:
35
35
 
36
36
  ```bash
37
- # Minimal template - bare essentials
38
- bunx create-ereo@latest my-app --template minimal
39
-
40
- # Default template - standard setup
41
- bunx create-ereo@latest my-app --template default
42
-
43
37
  # Tailwind template - full-featured with Tailwind CSS (default)
44
38
  bunx create-ereo@latest my-app --template tailwind
39
+
40
+ # Tasks template - full-stack CRUD app with auth + SQLite
41
+ bunx create-ereo@latest my-app --template tasks
42
+
43
+ # Minimal template - bare essentials
44
+ bunx create-ereo@latest my-app --template minimal
45
45
  ```
46
46
 
47
47
  ### Template Contents
48
48
 
49
- **Minimal:**
50
- - Basic project structure
51
- - Single route
52
- - TypeScript configuration
53
-
54
49
  **Tailwind (default):**
55
50
  - Complete project structure
56
51
  - Multiple example routes (Home, Blog, Contact, About)
@@ -62,11 +57,27 @@ bunx create-ereo@latest my-app --template tailwind
62
57
  - Tailwind CSS with custom theme
63
58
  - TypeScript with path aliases
64
59
 
60
+ **Tasks:**
61
+ - Email & password authentication with argon2id hashing
62
+ - SQLite database with WAL mode and automatic migrations
63
+ - Full CRUD operations for tasks (create, read, update, delete)
64
+ - Protected routes with auth middleware
65
+ - Dashboard with task stats and status filters
66
+ - Server-side validation and error handling
67
+ - JWT sessions with secure cookie configuration
68
+ - Docker support with SQLite volume persistence
69
+ - Tailwind CSS with custom component classes
70
+
71
+ **Minimal:**
72
+ - Basic project structure
73
+ - Single route
74
+ - TypeScript configuration
75
+
65
76
  ## Options
66
77
 
67
78
  | Option | Alias | Description |
68
79
  |--------|-------|-------------|
69
- | `--template` | `-t` | Template to use (minimal, default, tailwind) |
80
+ | `--template` | `-t` | Template to use (minimal, default, tailwind, tasks) |
70
81
  | `--no-typescript` | | Use JavaScript instead of TypeScript |
71
82
  | `--no-git` | | Skip git initialization |
72
83
  | `--no-install` | | Skip package installation |
@@ -118,11 +129,11 @@ my-app/
118
129
 
119
130
  ## Documentation
120
131
 
121
- For full documentation, visit [https://ereo.dev/docs/getting-started](https://ereo.dev/docs/getting-started)
132
+ For full documentation, visit [https://ereojs.github.io/ereoJS/getting-started/](https://ereojs.github.io/ereoJS/getting-started/)
122
133
 
123
134
  ## Part of EreoJS
124
135
 
125
- This package is part of the [EreoJS monorepo](https://github.com/anthropics/ereo-js).
136
+ This package is part of the [EreoJS monorepo](https://github.com/ereoJS/ereoJS).
126
137
 
127
138
  ## License
128
139