Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ Each example doubles as a reference for [community packages](https://docs.meteor
- Why: Task management with CRUD, status workflows, priority filtering, real-time dashboard, and type-safe RPC
- Stack: Meteor, Rspack, React, Meteor-RPC, shadcn/ui, Tailwind CSS v4, React Query, Zod, Mocha, Biome, Playwright
- Last Updated At: Apr/21/2026
- Meteor Version: 3.5.2
- Meteor Version: 3.6-beta.0

### Notes Offline
- Repository: [meteor/examples/notes-offline](./notes-offline)
- Demo: https://notes-offline.sandbox.galaxycloud.app/
- Why: Offline-first PWA notes app with auto-save, markdown, search, tagging, pinning, trash/recovery, import/export, cross-tab sync, per-device scoping, and multi-language UI (en/es/pt)
- Stack: Meteor, Rspack, React, Mantine UI, jam:offline, jam:method, jam:pub-sub, jam:soft-delete, Zod, Workbox, LinguiJS, Mocha, ESLint, Prettier, Playwright
- Last Updated At: Apr/21/2026
- Meteor Version: 3.5.2
- Meteor Version: 3.6-beta.0

### Simple Blog
- Repository: [dupontbertrand/meteor-blog](https://github.com/dupontbertrand/meteor-blog)
Expand All @@ -65,23 +65,23 @@ Each example doubles as a reference for [community packages](https://docs.meteor
- Why: Real-time multiplayer game with room-based matchmaking and live state sync via pub/sub
- Stack: Meteor, Rspack, React, MUI (Material UI), Mocha, oxlint, Playwright
- Last Updated At: Apr/21/2026
- Meteor Version: 3.5.2
- Meteor Version: 3.6-beta.0

### Parties
- Repository: [meteor/examples/parties](./parties)
- Demo: https://parties.sandbox.galaxycloud.app/
- Why: One of the original Meteor examples showcasing how to build a nice working application with Blaze with very little code, while taking advantage of optimistic updates
- Stack: Meteor, Rspack, Blaze 3, Bootstrap 5, D3.js, RSLint, Playwright
- Last Updated At: Apr/21/2026
- Meteor Version: 3.5.2
- Meteor Version: 3.6-beta.0

### Complex Todos (Svelte)
- Repository: [meteor/examples/complex-todos-svelte](./complex-todos-svelte)
- Demo: https://complex-todos-svelte.sandbox.galaxycloud.app/
- Why: Production-grade todo app with modular monolith architecture, rate limiting, caching, migrations, scheduled jobs, and E2E tests
- Stack: Meteor, Rspack, Svelte 5, Skeleton UI, Tailwind CSS v4, jam:method, Zod, oxlint, Cypress, Mocha, MongoDB
- Last Updated At: Apr/21/2026
- Meteor Version: 3.5.2
- Meteor Version: 3.6-beta.0

### Welcome Meteor Cordova
- Repository: [CloudByGalaxy/welcome-meteor-cordova](https://github.com/CloudByGalaxy/welcome-meteor-cordova)
Expand Down
6 changes: 3 additions & 3 deletions complex-todos-svelte/.meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ tracker@1.3.4 # Meteor's client-side reactive programming librar
standard-minifier-css@1.10.1 # CSS minifier run for production mode
standard-minifier-js@3.2.0 # JS minifier run for production mode
es5-shim@4.8.1 # ECMAScript 5 compatibility for older browsers
ecmascript@0.19.1 # Enable ECMAScript2015+ syntax in app code
typescript@5.11.1 # Enable TypeScript syntax in .ts and .tsx modules
ecmascript@0.19.2-beta360.0 # Enable ECMAScript2015+ syntax in app code
typescript@5.11.2-beta360.0 # Enable TypeScript syntax in .ts and .tsx modules
shell-server@0.7.0 # Server-side component of the `meteor shell` command
hot-module-replacement@0.6.0 # Update client in development without reloading the page

static-html@1.5.0 # Define static page content in .html files
rspack@1.3.0
rspack@1.4.0-beta360.0

#
# Accounts
Expand Down
2 changes: 1 addition & 1 deletion complex-todos-svelte/.meteor/release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
METEOR@3.5.2
METEOR@3.6-beta.0
12 changes: 6 additions & 6 deletions complex-todos-svelte/.meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ accounts-base@3.3.1
accounts-password@3.3.1
allow-deny@2.1.0
autoupdate@2.0.1
babel-compiler@7.15.1
babel-compiler@7.15.2-beta360.0
babel-runtime@1.5.2
base64@1.0.14
binary-heap@1.0.13
Expand All @@ -18,7 +18,7 @@ ddp-rate-limiter@1.3.0
ddp-server@3.4.0
diff-sequence@1.1.3
dynamic-import@0.7.4
ecmascript@0.19.1
ecmascript@0.19.2-beta360.0
ecmascript-runtime@0.8.3
ecmascript-runtime-client@0.13.0
ecmascript-runtime-server@0.11.1
Expand All @@ -42,7 +42,7 @@ meteortesting:browser-tests@1.8.0
meteortesting:mocha@3.3.0
meteortesting:mocha-core@8.2.0
minifier-css@2.0.2
minifier-js@3.3.1
minifier-js@3.3.2-beta360.0
minimongo@2.2.0
mobile-experience@1.1.2
mobile-status-bar@1.1.1
Expand All @@ -64,17 +64,17 @@ reactive-var@1.0.13
reload@1.3.2
retry@1.1.1
routepolicy@1.1.2
rspack@1.3.0
rspack@1.4.0-beta360.0
sha@1.0.10
shell-server@0.7.0
socket-stream-client@0.7.1
standard-minifier-css@1.10.1
standard-minifier-js@3.2.0
static-html@1.5.0
static-html-tools@1.0.0
tools-core@1.3.0
tools-core@1.4.0-beta360.0
tracker@1.3.4
typescript@5.11.1
typescript@5.11.2-beta360.0
url@1.3.6
webapp@2.3.0
webapp-hashing@1.1.2
Expand Down
4 changes: 2 additions & 2 deletions complex-todos-svelte/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

Same idea as the [simple Svelte tutorial](https://github.com/meteor/meteor3-svelte/tree/3.4-rspack), but not simple. This app covers things you'll actually run into when building something real: module boundaries, validation, rate limiting, caching, migrations, jobs, and proper separation of concerns.

Built with Meteor 3.5.2, Svelte 5, Skeleton UI, and Tailwind CSS v4.
Built with Meteor 3.6-beta.0, Svelte 5, Skeleton UI, and Tailwind CSS v4.

Demo: https://complex-todos-svelte.sandbox.galaxycloud.app/

## Stack

| | |
|---|---|
| Runtime | Meteor 3.5.2 |
| Runtime | Meteor 3.6-beta.0 |
| Frontend | Svelte 5 (runes) |
| UI | Skeleton UI v4 + Tailwind CSS v4, Cerberus theme |
| Build | Rspack |
Expand Down
Loading