@korajs/cli 0.5.0 → 1.0.0-beta.0

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 (200) hide show
  1. package/LICENSE +21 -0
  2. package/dist/bin.cjs +2656 -207
  3. package/dist/bin.cjs.map +1 -1
  4. package/dist/bin.js +152 -96
  5. package/dist/bin.js.map +1 -1
  6. package/dist/chunk-5NI2FEQL.js +92 -0
  7. package/dist/chunk-5NI2FEQL.js.map +1 -0
  8. package/dist/chunk-6C4BHSRA.js +82 -0
  9. package/dist/chunk-6C4BHSRA.js.map +1 -0
  10. package/dist/{chunk-3WNFM3QB.js → chunk-B5YS4STN.js} +78 -99
  11. package/dist/chunk-B5YS4STN.js.map +1 -0
  12. package/dist/{chunk-PSRM56B7.js → chunk-BWTKRKNJ.js} +60 -7
  13. package/dist/chunk-BWTKRKNJ.js.map +1 -0
  14. package/dist/{chunk-SOTZIWIF.js → chunk-EOWLAAIV.js} +5 -3
  15. package/dist/{chunk-SOTZIWIF.js.map → chunk-EOWLAAIV.js.map} +1 -1
  16. package/dist/create.cjs +82 -7
  17. package/dist/create.cjs.map +1 -1
  18. package/dist/create.js +3 -2
  19. package/dist/create.js.map +1 -1
  20. package/dist/index.cjs +65 -3
  21. package/dist/index.cjs.map +1 -1
  22. package/dist/index.d.cts +3 -3
  23. package/dist/index.d.ts +3 -3
  24. package/dist/index.js +3 -2
  25. package/dist/lab-manager-KUDII6BT.js +280 -0
  26. package/dist/lab-manager-KUDII6BT.js.map +1 -0
  27. package/dist/schema-loader-GGHECMTM.js +9 -0
  28. package/dist/schema-loader-GGHECMTM.js.map +1 -0
  29. package/dist/spectator-manager-E2LH2P54.js +142 -0
  30. package/dist/spectator-manager-E2LH2P54.js.map +1 -0
  31. package/dist/studio-server-NIFKZI4F.js +1738 -0
  32. package/dist/studio-server-NIFKZI4F.js.map +1 -0
  33. package/package.json +8 -6
  34. package/templates/react-basic/AGENTS.md +87 -0
  35. package/templates/react-sync/AGENTS.md +87 -0
  36. package/templates/react-sync/src/App.tsx +8 -0
  37. package/templates/react-sync/src/index.css +11 -0
  38. package/templates/react-tailwind/AGENTS.md +87 -0
  39. package/templates/react-tailwind-sync/AGENTS.md +87 -0
  40. package/templates/react-tailwind-sync/src/App.tsx +28 -0
  41. package/templates/svelte-basic/.env.example +3 -0
  42. package/templates/svelte-basic/AGENTS.md +76 -0
  43. package/templates/svelte-basic/README.md.hbs +62 -0
  44. package/templates/svelte-basic/index.html.hbs +12 -0
  45. package/templates/svelte-basic/kora.config.ts +12 -0
  46. package/templates/svelte-basic/package.json.hbs +27 -0
  47. package/templates/svelte-basic/src/App.svelte +127 -0
  48. package/templates/svelte-basic/src/Root.svelte +14 -0
  49. package/templates/svelte-basic/src/index.css +287 -0
  50. package/templates/svelte-basic/src/kora-worker.ts +9 -0
  51. package/templates/svelte-basic/src/main.ts +16 -0
  52. package/templates/svelte-basic/src/modules/todos/todo.mutations.ts +25 -0
  53. package/templates/svelte-basic/src/modules/todos/todo.queries.ts +5 -0
  54. package/templates/svelte-basic/src/modules/todos/todo.schema.ts +10 -0
  55. package/templates/svelte-basic/src/modules/todos/useTodos.ts +25 -0
  56. package/templates/svelte-basic/src/schema.ts +9 -0
  57. package/templates/svelte-basic/src/vite-env.d.ts +12 -0
  58. package/templates/svelte-basic/svelte.config.js +5 -0
  59. package/templates/svelte-basic/tsconfig.json.hbs +14 -0
  60. package/templates/svelte-basic/vite.config.ts +52 -0
  61. package/templates/svelte-sync/.env.example +25 -0
  62. package/templates/svelte-sync/AGENTS.md +76 -0
  63. package/templates/svelte-sync/README.md.hbs +105 -0
  64. package/templates/svelte-sync/index.html.hbs +12 -0
  65. package/templates/svelte-sync/kora.config.ts +17 -0
  66. package/templates/svelte-sync/package.json.hbs +43 -0
  67. package/templates/svelte-sync/server.ts +90 -0
  68. package/templates/svelte-sync/src/App.svelte +150 -0
  69. package/templates/svelte-sync/src/Root.svelte +22 -0
  70. package/templates/svelte-sync/src/auth.ts +25 -0
  71. package/templates/svelte-sync/src/index.css +339 -0
  72. package/templates/svelte-sync/src/kora-worker.ts +9 -0
  73. package/templates/svelte-sync/src/main.ts +32 -0
  74. package/templates/svelte-sync/src/modules/todos/todo.mutations.ts +25 -0
  75. package/templates/svelte-sync/src/modules/todos/todo.queries.ts +5 -0
  76. package/templates/svelte-sync/src/modules/todos/todo.schema.ts +10 -0
  77. package/templates/svelte-sync/src/modules/todos/useTodos.ts +25 -0
  78. package/templates/svelte-sync/src/schema.ts +9 -0
  79. package/templates/svelte-sync/src/vite-env.d.ts +21 -0
  80. package/templates/svelte-sync/svelte.config.js +5 -0
  81. package/templates/svelte-sync/tsconfig.json.hbs +14 -0
  82. package/templates/svelte-sync/vite.config.ts +79 -0
  83. package/templates/svelte-tailwind/AGENTS.md +76 -0
  84. package/templates/svelte-tailwind/README.md.hbs +62 -0
  85. package/templates/svelte-tailwind/index.html.hbs +12 -0
  86. package/templates/svelte-tailwind/kora.config.ts +12 -0
  87. package/templates/svelte-tailwind/package.json.hbs +30 -0
  88. package/templates/svelte-tailwind/src/App.svelte +75 -0
  89. package/templates/svelte-tailwind/src/Root.svelte +14 -0
  90. package/templates/svelte-tailwind/src/index.css +7 -0
  91. package/templates/svelte-tailwind/src/kora-worker.ts +9 -0
  92. package/templates/svelte-tailwind/src/main.ts +16 -0
  93. package/templates/svelte-tailwind/src/modules/todos/todo.mutations.ts +25 -0
  94. package/templates/svelte-tailwind/src/modules/todos/todo.queries.ts +5 -0
  95. package/templates/svelte-tailwind/src/modules/todos/todo.schema.ts +10 -0
  96. package/templates/svelte-tailwind/src/modules/todos/useTodos.ts +25 -0
  97. package/templates/svelte-tailwind/src/schema.ts +9 -0
  98. package/templates/svelte-tailwind/src/vite-env.d.ts +12 -0
  99. package/templates/svelte-tailwind/svelte.config.js +5 -0
  100. package/templates/svelte-tailwind/tsconfig.json.hbs +14 -0
  101. package/templates/svelte-tailwind/vite.config.ts +53 -0
  102. package/templates/svelte-tailwind-sync/.env.example +25 -0
  103. package/templates/svelte-tailwind-sync/AGENTS.md +76 -0
  104. package/templates/svelte-tailwind-sync/README.md.hbs +105 -0
  105. package/templates/svelte-tailwind-sync/index.html.hbs +12 -0
  106. package/templates/svelte-tailwind-sync/kora.config.ts +17 -0
  107. package/templates/svelte-tailwind-sync/package.json.hbs +46 -0
  108. package/templates/svelte-tailwind-sync/server.ts +90 -0
  109. package/templates/svelte-tailwind-sync/src/App.svelte +192 -0
  110. package/templates/svelte-tailwind-sync/src/Root.svelte +26 -0
  111. package/templates/svelte-tailwind-sync/src/auth.ts +25 -0
  112. package/templates/svelte-tailwind-sync/src/index.css +7 -0
  113. package/templates/svelte-tailwind-sync/src/kora-worker.ts +9 -0
  114. package/templates/svelte-tailwind-sync/src/main.ts +32 -0
  115. package/templates/svelte-tailwind-sync/src/modules/todos/todo.mutations.ts +25 -0
  116. package/templates/svelte-tailwind-sync/src/modules/todos/todo.queries.ts +5 -0
  117. package/templates/svelte-tailwind-sync/src/modules/todos/todo.schema.ts +10 -0
  118. package/templates/svelte-tailwind-sync/src/modules/todos/useTodos.ts +25 -0
  119. package/templates/svelte-tailwind-sync/src/schema.ts +9 -0
  120. package/templates/svelte-tailwind-sync/src/vite-env.d.ts +21 -0
  121. package/templates/svelte-tailwind-sync/svelte.config.js +5 -0
  122. package/templates/svelte-tailwind-sync/tsconfig.json.hbs +14 -0
  123. package/templates/svelte-tailwind-sync/vite.config.ts +80 -0
  124. package/templates/tauri-react/AGENTS.md +91 -0
  125. package/templates/vue-basic/AGENTS.md +84 -0
  126. package/templates/vue-basic/README.md.hbs +62 -0
  127. package/templates/vue-basic/index.html.hbs +12 -0
  128. package/templates/vue-basic/kora.config.ts +12 -0
  129. package/templates/vue-basic/package.json.hbs +26 -0
  130. package/templates/vue-basic/src/App.vue +117 -0
  131. package/templates/vue-basic/src/index.css +287 -0
  132. package/templates/vue-basic/src/kora-worker.ts +9 -0
  133. package/templates/vue-basic/src/main.ts +20 -0
  134. package/templates/vue-basic/src/modules/todos/todo.mutations.ts +25 -0
  135. package/templates/vue-basic/src/modules/todos/todo.queries.ts +5 -0
  136. package/templates/vue-basic/src/modules/todos/todo.schema.ts +10 -0
  137. package/templates/vue-basic/src/modules/todos/useTodos.ts +32 -0
  138. package/templates/vue-basic/src/schema.ts +9 -0
  139. package/templates/vue-basic/src/vite-env.d.ts +17 -0
  140. package/templates/vue-basic/tsconfig.json.hbs +15 -0
  141. package/templates/vue-basic/vite.config.ts +69 -0
  142. package/templates/vue-sync/.env.example +25 -0
  143. package/templates/vue-sync/AGENTS.md +84 -0
  144. package/templates/vue-sync/README.md.hbs +105 -0
  145. package/templates/vue-sync/index.html.hbs +12 -0
  146. package/templates/vue-sync/kora.config.ts +17 -0
  147. package/templates/vue-sync/package.json.hbs +42 -0
  148. package/templates/vue-sync/server.ts +90 -0
  149. package/templates/vue-sync/src/App.vue +135 -0
  150. package/templates/vue-sync/src/auth.ts +25 -0
  151. package/templates/vue-sync/src/index.css +339 -0
  152. package/templates/vue-sync/src/kora-worker.ts +9 -0
  153. package/templates/vue-sync/src/main.ts +47 -0
  154. package/templates/vue-sync/src/modules/todos/todo.mutations.ts +25 -0
  155. package/templates/vue-sync/src/modules/todos/todo.queries.ts +5 -0
  156. package/templates/vue-sync/src/modules/todos/todo.schema.ts +10 -0
  157. package/templates/vue-sync/src/modules/todos/useTodos.ts +32 -0
  158. package/templates/vue-sync/src/schema.ts +9 -0
  159. package/templates/vue-sync/src/vite-env.d.ts +26 -0
  160. package/templates/vue-sync/tsconfig.json.hbs +15 -0
  161. package/templates/vue-sync/vite.config.ts +79 -0
  162. package/templates/vue-tailwind/AGENTS.md +84 -0
  163. package/templates/vue-tailwind/README.md.hbs +62 -0
  164. package/templates/vue-tailwind/index.html.hbs +12 -0
  165. package/templates/vue-tailwind/kora.config.ts +12 -0
  166. package/templates/vue-tailwind/package.json.hbs +29 -0
  167. package/templates/vue-tailwind/src/App.vue +135 -0
  168. package/templates/vue-tailwind/src/index.css +7 -0
  169. package/templates/vue-tailwind/src/kora-worker.ts +9 -0
  170. package/templates/vue-tailwind/src/main.ts +31 -0
  171. package/templates/vue-tailwind/src/modules/todos/todo.mutations.ts +25 -0
  172. package/templates/vue-tailwind/src/modules/todos/todo.queries.ts +5 -0
  173. package/templates/vue-tailwind/src/modules/todos/todo.schema.ts +10 -0
  174. package/templates/vue-tailwind/src/modules/todos/useTodos.ts +32 -0
  175. package/templates/vue-tailwind/src/schema.ts +9 -0
  176. package/templates/vue-tailwind/src/vite-env.d.ts +17 -0
  177. package/templates/vue-tailwind/tsconfig.json.hbs +15 -0
  178. package/templates/vue-tailwind/vite.config.ts +70 -0
  179. package/templates/vue-tailwind-sync/.env.example +25 -0
  180. package/templates/vue-tailwind-sync/AGENTS.md +84 -0
  181. package/templates/vue-tailwind-sync/README.md.hbs +105 -0
  182. package/templates/vue-tailwind-sync/index.html.hbs +12 -0
  183. package/templates/vue-tailwind-sync/kora.config.ts +17 -0
  184. package/templates/vue-tailwind-sync/package.json.hbs +45 -0
  185. package/templates/vue-tailwind-sync/server.ts +90 -0
  186. package/templates/vue-tailwind-sync/src/App.vue +245 -0
  187. package/templates/vue-tailwind-sync/src/auth.ts +25 -0
  188. package/templates/vue-tailwind-sync/src/index.css +7 -0
  189. package/templates/vue-tailwind-sync/src/kora-worker.ts +9 -0
  190. package/templates/vue-tailwind-sync/src/main.ts +56 -0
  191. package/templates/vue-tailwind-sync/src/modules/todos/todo.mutations.ts +25 -0
  192. package/templates/vue-tailwind-sync/src/modules/todos/todo.queries.ts +5 -0
  193. package/templates/vue-tailwind-sync/src/modules/todos/todo.schema.ts +10 -0
  194. package/templates/vue-tailwind-sync/src/modules/todos/useTodos.ts +32 -0
  195. package/templates/vue-tailwind-sync/src/schema.ts +9 -0
  196. package/templates/vue-tailwind-sync/src/vite-env.d.ts +26 -0
  197. package/templates/vue-tailwind-sync/tsconfig.json.hbs +15 -0
  198. package/templates/vue-tailwind-sync/vite.config.ts +80 -0
  199. package/dist/chunk-3WNFM3QB.js.map +0 -1
  200. package/dist/chunk-PSRM56B7.js.map +0 -1
@@ -0,0 +1,117 @@
1
+ <script setup lang="ts">
2
+ import { computed, ref } from 'vue'
3
+ import { useTodos } from './modules/todos/useTodos'
4
+
5
+ type Filter = 'all' | 'active' | 'completed'
6
+
7
+ const { allTodos, activeTodos, completedTodos, addTodo, toggleTodo, deleteTodo } = useTodos()
8
+
9
+ const filter = ref<Filter>('all')
10
+ const input = ref('')
11
+
12
+ const filteredTodos = computed(() => {
13
+ if (filter.value === 'active') return activeTodos.value
14
+ if (filter.value === 'completed') return completedTodos.value
15
+ return allTodos.value
16
+ })
17
+
18
+ function handleSubmit(): void {
19
+ const title = input.value.trim()
20
+ if (!title) return
21
+ addTodo.mutate({ title })
22
+ input.value = ''
23
+ }
24
+
25
+ function clearCompleted(): void {
26
+ for (const todo of completedTodos.value) {
27
+ deleteTodo.mutate(todo.id)
28
+ }
29
+ }
30
+
31
+ function formatTime(timestamp: number): string {
32
+ const date = new Date(timestamp)
33
+ const now = new Date()
34
+ if (date.toDateString() === now.toDateString()) {
35
+ return date.toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' })
36
+ }
37
+ return date.toLocaleDateString([], { month: 'short', day: 'numeric' })
38
+ }
39
+ </script>
40
+
41
+ <template>
42
+ <div class="app">
43
+ <div class="header">
44
+ <h1>My Tasks</h1>
45
+ </div>
46
+
47
+ <div class="stats">
48
+ <div class="stat-card">
49
+ <div class="label">Total</div>
50
+ <div class="value muted">{{ allTodos.length }}</div>
51
+ </div>
52
+ <div class="stat-card">
53
+ <div class="label">Remaining</div>
54
+ <div class="value warning">{{ activeTodos.length }}</div>
55
+ </div>
56
+ <div class="stat-card">
57
+ <div class="label">Done</div>
58
+ <div class="value success">{{ completedTodos.length }}</div>
59
+ </div>
60
+ </div>
61
+
62
+ <form class="add-form" @submit.prevent="handleSubmit">
63
+ <input v-model="input" type="text" placeholder="What needs to be done?" />
64
+ <button type="submit" :disabled="!input.trim()">Add</button>
65
+ </form>
66
+
67
+ <div class="filters">
68
+ <button
69
+ v-for="f in (['all', 'active', 'completed'] as const)"
70
+ :key="f"
71
+ type="button"
72
+ :class="['filter-btn', { active: filter === f }]"
73
+ @click="filter = f"
74
+ >
75
+ {{ f.charAt(0).toUpperCase() + f.slice(1) }}
76
+ <span class="badge">
77
+ {{
78
+ f === 'all'
79
+ ? allTodos.length
80
+ : f === 'active'
81
+ ? activeTodos.length
82
+ : completedTodos.length
83
+ }}
84
+ </span>
85
+ </button>
86
+ </div>
87
+
88
+ <div class="todo-list">
89
+ <div v-if="filteredTodos.length === 0" class="empty-state">
90
+ <template v-if="filter === 'all'">No tasks yet. Add one above!</template>
91
+ <template v-else-if="filter === 'active'">All caught up! No active tasks.</template>
92
+ <template v-else>No completed tasks yet.</template>
93
+ </div>
94
+ <div v-for="todo in filteredTodos" v-else :key="todo.id" class="todo-item">
95
+ <button
96
+ type="button"
97
+ :class="['toggle', { checked: todo.completed }]"
98
+ @click="toggleTodo.mutate(todo.id, { completed: !todo.completed })"
99
+ >
100
+ {{ todo.completed ? '✓' : '' }}
101
+ </button>
102
+ <span :class="['title', { done: todo.completed }]">{{ String(todo.title) }}</span>
103
+ <span v-if="todo.createdAt" class="time">{{ formatTime(Number(todo.createdAt)) }}</span>
104
+ <button type="button" class="delete-btn" @click="deleteTodo.mutate(todo.id)">×</button>
105
+ </div>
106
+ </div>
107
+
108
+ <div v-if="allTodos.length > 0" class="footer">
109
+ <span>{{ activeTodos.length }} item{{ activeTodos.length !== 1 ? 's' : '' }} left</span>
110
+ <button v-if="completedTodos.length > 0" type="button" @click="clearCompleted">
111
+ Clear completed
112
+ </button>
113
+ </div>
114
+
115
+ <p class="branding">Powered by Kora — offline-first</p>
116
+ </div>
117
+ </template>
@@ -0,0 +1,287 @@
1
+ *,
2
+ *::before,
3
+ *::after {
4
+ box-sizing: border-box;
5
+ margin: 0;
6
+ padding: 0;
7
+ }
8
+
9
+ :root {
10
+ --color-bg: #0a0a0f;
11
+ --color-surface: #111118;
12
+ --color-border: #1e1e2a;
13
+ --color-border-hover: #2a2a3a;
14
+ --color-text: #e4e4e7;
15
+ --color-text-muted: #71717a;
16
+ --color-text-dim: #3f3f46;
17
+ --color-primary: #6366f1;
18
+ --color-primary-hover: #818cf8;
19
+ --color-success: #34d399;
20
+ --color-warning: #fbbf24;
21
+ --color-danger: #f87171;
22
+ --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
23
+ --radius: 8px;
24
+ }
25
+
26
+ body {
27
+ font-family: var(--font-sans);
28
+ background: var(--color-bg);
29
+ color: var(--color-text);
30
+ line-height: 1.6;
31
+ -webkit-font-smoothing: antialiased;
32
+ }
33
+
34
+ .app {
35
+ max-width: 640px;
36
+ margin: 0 auto;
37
+ padding: 48px 16px;
38
+ }
39
+
40
+ .header {
41
+ display: flex;
42
+ align-items: center;
43
+ justify-content: space-between;
44
+ margin-bottom: 32px;
45
+ }
46
+
47
+ .header h1 {
48
+ font-size: 1.5rem;
49
+ font-weight: 700;
50
+ }
51
+
52
+ .local-badge {
53
+ display: inline-flex;
54
+ align-items: center;
55
+ gap: 6px;
56
+ padding: 4px 12px;
57
+ border-radius: 999px;
58
+ background: var(--color-surface);
59
+ font-size: 0.8rem;
60
+ color: var(--color-text-muted);
61
+ }
62
+
63
+ .stats {
64
+ display: grid;
65
+ grid-template-columns: repeat(3, 1fr);
66
+ gap: 12px;
67
+ margin-bottom: 32px;
68
+ }
69
+
70
+ .stat-card {
71
+ background: var(--color-surface);
72
+ border: 1px solid var(--color-border);
73
+ border-radius: var(--radius);
74
+ padding: 16px;
75
+ }
76
+
77
+ .stat-card .label {
78
+ font-size: 0.8rem;
79
+ color: var(--color-text-muted);
80
+ }
81
+
82
+ .stat-card .value {
83
+ font-size: 1.5rem;
84
+ font-weight: 700;
85
+ }
86
+
87
+ .stat-card .value.muted {
88
+ color: var(--color-text-muted);
89
+ }
90
+ .stat-card .value.warning {
91
+ color: var(--color-warning);
92
+ }
93
+ .stat-card .value.success {
94
+ color: var(--color-success);
95
+ }
96
+
97
+ .add-form {
98
+ display: flex;
99
+ gap: 12px;
100
+ margin-bottom: 32px;
101
+ }
102
+
103
+ .add-form input {
104
+ flex: 1;
105
+ padding: 10px 16px;
106
+ border: 1px solid var(--color-border);
107
+ border-radius: var(--radius);
108
+ background: var(--color-surface);
109
+ color: var(--color-text);
110
+ font-size: 0.95rem;
111
+ outline: none;
112
+ }
113
+
114
+ .add-form input:focus {
115
+ border-color: var(--color-primary);
116
+ }
117
+
118
+ .add-form input::placeholder {
119
+ color: var(--color-text-muted);
120
+ }
121
+
122
+ .add-form button {
123
+ padding: 10px 20px;
124
+ border: none;
125
+ border-radius: var(--radius);
126
+ background: var(--color-primary);
127
+ color: white;
128
+ font-size: 0.95rem;
129
+ font-weight: 500;
130
+ cursor: pointer;
131
+ }
132
+
133
+ .add-form button:hover {
134
+ background: var(--color-primary-hover);
135
+ }
136
+
137
+ .add-form button:disabled {
138
+ opacity: 0.5;
139
+ cursor: not-allowed;
140
+ }
141
+
142
+ .filters {
143
+ display: flex;
144
+ gap: 8px;
145
+ margin-bottom: 24px;
146
+ }
147
+
148
+ .filter-btn {
149
+ padding: 6px 16px;
150
+ border: none;
151
+ border-radius: var(--radius);
152
+ background: var(--color-surface);
153
+ color: var(--color-text-muted);
154
+ font-size: 0.85rem;
155
+ font-weight: 500;
156
+ cursor: pointer;
157
+ }
158
+
159
+ .filter-btn:hover {
160
+ background: var(--color-border-hover);
161
+ color: var(--color-text);
162
+ }
163
+
164
+ .filter-btn.active {
165
+ background: var(--color-primary);
166
+ color: white;
167
+ }
168
+
169
+ .filter-btn .badge {
170
+ display: inline-block;
171
+ margin-left: 6px;
172
+ padding: 1px 6px;
173
+ border-radius: 999px;
174
+ font-size: 0.75rem;
175
+ background: rgba(255, 255, 255, 0.15);
176
+ }
177
+
178
+ .filter-btn:not(.active) .badge {
179
+ background: var(--color-border);
180
+ }
181
+
182
+ .todo-list {
183
+ display: flex;
184
+ flex-direction: column;
185
+ gap: 8px;
186
+ }
187
+
188
+ .todo-item {
189
+ display: flex;
190
+ align-items: center;
191
+ gap: 12px;
192
+ padding: 12px 16px;
193
+ border: 1px solid var(--color-border);
194
+ border-radius: var(--radius);
195
+ background: var(--color-surface);
196
+ }
197
+
198
+ .todo-item:hover {
199
+ border-color: var(--color-border-hover);
200
+ }
201
+
202
+ .todo-item .toggle {
203
+ background: none;
204
+ border: 2px solid var(--color-text-muted);
205
+ width: 20px;
206
+ height: 20px;
207
+ border-radius: 50%;
208
+ cursor: pointer;
209
+ display: flex;
210
+ align-items: center;
211
+ justify-content: center;
212
+ color: transparent;
213
+ font-size: 0.7rem;
214
+ flex-shrink: 0;
215
+ }
216
+
217
+ .todo-item .toggle.checked {
218
+ border-color: var(--color-success);
219
+ background: var(--color-success);
220
+ color: white;
221
+ }
222
+
223
+ .todo-item .title {
224
+ flex: 1;
225
+ }
226
+
227
+ .todo-item .title.done {
228
+ text-decoration: line-through;
229
+ color: var(--color-text-muted);
230
+ }
231
+
232
+ .todo-item .time {
233
+ font-size: 0.75rem;
234
+ color: var(--color-text-dim);
235
+ }
236
+
237
+ .todo-item .delete-btn {
238
+ background: none;
239
+ border: none;
240
+ color: var(--color-text-dim);
241
+ cursor: pointer;
242
+ padding: 4px;
243
+ opacity: 0;
244
+ transition: opacity 0.15s;
245
+ }
246
+
247
+ .todo-item:hover .delete-btn {
248
+ opacity: 1;
249
+ }
250
+
251
+ .todo-item .delete-btn:hover {
252
+ color: var(--color-danger);
253
+ }
254
+
255
+ .empty-state {
256
+ padding: 48px 0;
257
+ text-align: center;
258
+ color: var(--color-text-dim);
259
+ border: 1px dashed var(--color-border);
260
+ border-radius: var(--radius);
261
+ }
262
+
263
+ .footer {
264
+ display: flex;
265
+ justify-content: space-between;
266
+ margin-top: 24px;
267
+ font-size: 0.85rem;
268
+ color: var(--color-text-muted);
269
+ }
270
+
271
+ .footer button {
272
+ background: none;
273
+ border: none;
274
+ color: var(--color-text-muted);
275
+ cursor: pointer;
276
+ }
277
+
278
+ .footer button:hover {
279
+ color: var(--color-text);
280
+ }
281
+
282
+ .branding {
283
+ margin-top: 48px;
284
+ text-align: center;
285
+ font-size: 0.75rem;
286
+ color: var(--color-text-dim);
287
+ }
@@ -0,0 +1,9 @@
1
+ // Web Worker entry point for SQLite WASM.
2
+ // Loaded automatically by the Kora store to run SQLite in a background thread.
3
+
4
+ // Import the WASM binary URL so Vite resolves it with the correct content hash.
5
+ // Without this, production builds fail because sqlite3 looks for the unhashed filename.
6
+ import sqliteWasmUrl from '@sqlite.org/sqlite-wasm/sqlite3.wasm?url'
7
+ ;(globalThis as Record<string, unknown>).__KORA_SQLITE_WASM_URL = sqliteWasmUrl
8
+
9
+ import '@korajs/store/sqlite-wasm/worker'
@@ -0,0 +1,20 @@
1
+ import { KoraProvider } from '@korajs/vue'
2
+ import { createApp as createKoraApp } from 'korajs'
3
+ import { createApp, h } from 'vue'
4
+ import App from './App.vue'
5
+ import schema from './schema'
6
+ import './index.css'
7
+ import koraWorkerUrl from './kora-worker.ts?worker&url'
8
+
9
+ const kora = createKoraApp({
10
+ schema,
11
+ store: {
12
+ workerUrl: koraWorkerUrl,
13
+ },
14
+ devtools: true,
15
+ })
16
+
17
+ createApp({
18
+ render: () =>
19
+ h(KoraProvider, { app: kora, fallback: h('div', 'Loading...') }, { default: () => h(App) }),
20
+ }).mount('#app')
@@ -0,0 +1,25 @@
1
+ import type { CollectionAccessor } from 'korajs'
2
+
3
+ export interface CreateTodoInput {
4
+ title: string
5
+ }
6
+
7
+ export interface UpdateTodoStatusInput {
8
+ completed: boolean
9
+ }
10
+
11
+ export function createTodo(todos: CollectionAccessor, data: CreateTodoInput) {
12
+ return todos.insert({ title: data.title })
13
+ }
14
+
15
+ export function updateTodoStatus(
16
+ todos: CollectionAccessor,
17
+ id: string,
18
+ data: UpdateTodoStatusInput,
19
+ ) {
20
+ return todos.update(id, { completed: data.completed })
21
+ }
22
+
23
+ export function deleteTodo(todos: CollectionAccessor, id: string) {
24
+ return todos.delete(id)
25
+ }
@@ -0,0 +1,5 @@
1
+ import type { CollectionAccessor } from 'korajs'
2
+
3
+ export function orderedTodos(todos: CollectionAccessor) {
4
+ return todos.where({}).orderBy('createdAt', 'desc')
5
+ }
@@ -0,0 +1,10 @@
1
+ import { t } from 'korajs'
2
+
3
+ export const todos = {
4
+ fields: {
5
+ title: t.string(),
6
+ completed: t.boolean().default(false),
7
+ createdAt: t.timestamp().auto(),
8
+ },
9
+ indexes: ['completed', 'createdAt'],
10
+ }
@@ -0,0 +1,32 @@
1
+ import { useCollection, useMutation, useQuery } from '@korajs/vue'
2
+ import { computed } from 'vue'
3
+ import {
4
+ type CreateTodoInput,
5
+ type UpdateTodoStatusInput,
6
+ createTodo,
7
+ deleteTodo,
8
+ updateTodoStatus,
9
+ } from './todo.mutations'
10
+ import { orderedTodos } from './todo.queries'
11
+
12
+ export function useTodos() {
13
+ const todos = useCollection('todos')
14
+ const allTodos = useQuery(orderedTodos(todos))
15
+ const addTodo = useMutation((data: CreateTodoInput) => createTodo(todos, data))
16
+ const toggleTodo = useMutation((id: string, data: UpdateTodoStatusInput) =>
17
+ updateTodoStatus(todos, id, data),
18
+ )
19
+ const removeTodo = useMutation((id: string) => deleteTodo(todos, id))
20
+
21
+ const activeTodos = computed(() => allTodos.value.filter((todo) => !todo.completed))
22
+ const completedTodos = computed(() => allTodos.value.filter((todo) => !!todo.completed))
23
+
24
+ return {
25
+ allTodos,
26
+ activeTodos,
27
+ completedTodos,
28
+ addTodo,
29
+ toggleTodo,
30
+ deleteTodo: removeTodo,
31
+ }
32
+ }
@@ -0,0 +1,9 @@
1
+ import { defineSchema } from 'korajs'
2
+ import { todos } from './modules/todos/todo.schema'
3
+
4
+ export default defineSchema({
5
+ version: 1,
6
+ collections: {
7
+ todos,
8
+ },
9
+ })
@@ -0,0 +1,17 @@
1
+ /// <reference types="vite/client" />
2
+
3
+ declare module '*.vue' {
4
+ import type { DefineComponent } from 'vue'
5
+ const component: DefineComponent<object, object, unknown>
6
+ export default component
7
+ }
8
+
9
+ declare module '*?worker&url' {
10
+ const url: string
11
+ export default url
12
+ }
13
+
14
+ declare module '*?url' {
15
+ const url: string
16
+ export default url
17
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "module": "ESNext",
5
+ "moduleResolution": "bundler",
6
+ "strict": true,
7
+ "noUncheckedIndexedAccess": true,
8
+ "esModuleInterop": true,
9
+ "skipLibCheck": true,
10
+ "jsx": "preserve",
11
+ "lib": ["ES2022", "DOM"],
12
+ "types": ["vite/client"]
13
+ },
14
+ "include": ["src/**/*.ts", "src/**/*.vue"]
15
+ }
@@ -0,0 +1,69 @@
1
+ import { copyFileSync, existsSync, readdirSync } from 'node:fs'
2
+ import { join, resolve } from 'node:path'
3
+ import vue from '@vitejs/plugin-vue'
4
+ import type { Plugin } from 'vite'
5
+ import { defineConfig } from 'vite'
6
+
7
+ function crossOriginIsolation(): Plugin {
8
+ return {
9
+ name: 'cross-origin-isolation',
10
+ configureServer(server) {
11
+ server.middlewares.use((_req, res, next) => {
12
+ res.setHeader('Cross-Origin-Opener-Policy', 'same-origin')
13
+ res.setHeader('Cross-Origin-Embedder-Policy', 'require-corp')
14
+ next()
15
+ })
16
+ },
17
+ configurePreviewServer(server) {
18
+ server.middlewares.use((_req, res, next) => {
19
+ res.setHeader('Cross-Origin-Opener-Policy', 'same-origin')
20
+ res.setHeader('Cross-Origin-Embedder-Policy', 'require-corp')
21
+ next()
22
+ })
23
+ },
24
+ }
25
+ }
26
+
27
+ function sqliteWasmHotfix(): Plugin {
28
+ return {
29
+ name: 'sqlite-wasm-hotfix',
30
+ apply: 'build',
31
+ closeBundle() {
32
+ const assetsDir = resolve('dist', 'assets')
33
+ if (!existsSync(assetsDir)) return
34
+
35
+ for (const file of readdirSync(assetsDir)) {
36
+ if (/^sqlite3-.+\.wasm$/.test(file)) {
37
+ copyFileSync(join(assetsDir, file), join(assetsDir, 'sqlite3.wasm'))
38
+ break
39
+ }
40
+ }
41
+
42
+ const proxyFile = resolve(
43
+ 'node_modules',
44
+ '@sqlite.org',
45
+ 'sqlite-wasm',
46
+ 'sqlite-wasm',
47
+ 'jswasm',
48
+ 'sqlite3-opfs-async-proxy.js',
49
+ )
50
+ if (existsSync(proxyFile)) {
51
+ copyFileSync(proxyFile, join(assetsDir, 'sqlite3-opfs-async-proxy.js'))
52
+ }
53
+ },
54
+ }
55
+ }
56
+
57
+ export default defineConfig({
58
+ plugins: [vue(), crossOriginIsolation(), sqliteWasmHotfix()],
59
+ worker: {
60
+ format: 'es',
61
+ },
62
+ optimizeDeps: {
63
+ exclude: ['@sqlite.org/sqlite-wasm', '@korajs/store'],
64
+ include: ['yjs'],
65
+ },
66
+ resolve: {
67
+ dedupe: ['yjs'],
68
+ },
69
+ })
@@ -0,0 +1,25 @@
1
+ # Kora Sync Server
2
+ # WebSocket URL for the sync server (used by the client)
3
+ VITE_SYNC_URL=ws://localhost:3001
4
+
5
+ # Sync server port
6
+ PORT=3001
7
+
8
+ # Server database
9
+ # Leave DATABASE_URL empty to use SQLite at KORA_SERVER_DB.
10
+ KORA_SERVER_DB=./kora-server.db
11
+ DATABASE_URL=
12
+
13
+ # Operational endpoints (/__kora, /__kora/status, /__kora/events, /__kora/metrics, backups)
14
+ # Set these in production. Use Authorization: Bearer <token> when calling protected endpoints.
15
+ KORA_ADMIN_TOKEN=
16
+ KORA_METRICS_TOKEN=
17
+ KORA_BACKUP_TOKEN=
18
+
19
+ # Optional sync path
20
+ KORA_SYNC_PATH=/kora-sync
21
+
22
+ # Auth
23
+ # Set this to enable built-in /auth/* routes and authenticated sync.
24
+ # Generate with: node -e "console.log(require('node:crypto').randomBytes(32).toString('hex'))"
25
+ KORA_AUTH_SECRET=