Skip to content

Commit 9feadd8

Browse files
authored
Merge pull request #41 from meteor/v3-notification
Add notification for current state of Meteor 3 examples
2 parents c44bd24 + 97cf124 commit 9feadd8

1 file changed

Lines changed: 95 additions & 42 deletions

File tree

README.md

Lines changed: 95 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,90 @@
11
## Examples of Meteor Projects
22

3+
> **Note: We are currently modernizing all the apps in this repository to support the latest Meteor 3.4.**
4+
>
5+
> In the meantime, here are some up-to-date resources you can check out:
6+
>
7+
> **Skeletons**: Quickly scaffold a new Meteor app using `meteor create` with any of the available skeletons:
8+
>
9+
> `--bare`, `--minimal`, `--full`, `--react` (default), `--vue`, `--apollo`, `--svelte`, `--blaze`, `--tailwind`, `--chakra-ui`, `--solid`, `--angular`, `--typescript`, `--babel`, `--coffeescript`, `--prototype`
10+
>
11+
> Run [`meteor create --help`](https://docs.meteor.com/cli/#meteorcreate) to see all options.
12+
>
13+
> **Example Apps:**
14+
> - [Simple Tasks](https://github.com/fredmaiaarantes/simpletasks): A task management app with Meteor Accounts, Chakra UI, Formik, and MongoDB
15+
> - [Welcome Meteor Cordova](https://github.com/CloudByGalaxy/welcome-meteor-cordova): For Cordova / mobile usage
16+
>
17+
> **Tutorial Apps (Meteor 3.4 + Rspack):**
18+
> - [React](https://github.com/meteor/meteor3-react/tree/3.4-rspack) ([tutorial](https://docs.meteor.com/tutorials/react/))
19+
> - [Solid](https://github.com/meteor/meteor3-solid/tree/3.4-rspack) ([tutorial](https://docs.meteor.com/tutorials/solid/))
20+
> - [Vue 3](https://github.com/meteor/meteor3-vue3/tree/3.4-rspack) ([tutorial](https://docs.meteor.com/tutorials/vue/meteorjs3-vue3.html))
21+
> - [Blaze](https://github.com/meteor/meteor3-blaze/tree/3.4-rspack) ([tutorial](https://docs.meteor.com/tutorials/blaze/))
22+
> - [Svelte](https://github.com/meteor/meteor3-svelte/tree/3.4-rspack) ([tutorial](https://docs.meteor.com/tutorials/svelte/))
23+
24+
> New to Meteor? Check out the [official documentation](https://docs.meteor.com/) and the [installation guide](https://docs.meteor.com/about/install.html) to get started.
25+
26+
---
27+
328
### Ready
429

30+
#### Simple Tasks
31+
32+
- Demo: [simpletasks2.meteorapp.com/](https://simpletasks2.meteorapp.com)
33+
- Repository: [fredmaiaarantes/simpletasks](https://github.com/fredmaiaarantes/simpletasks)
34+
- Why: To show how to use Meteor with [Chakra UI](https://chakra-ui.com/) + [Formik](https://formik.org/) + MongoDB
35+
- Stack: Meteor, Rspack, Chakra UI, React, Formik, MongoDB
36+
- Last Updated At: Feb/12/2026
37+
- Meteor Version: 3.4
38+
39+
#### Welcome Meteor Cordova
40+
- Demo: N/A
41+
- Repository: [CloudByGalaxy/welcome-meteor-cordova](https://github.com/CloudByGalaxy/welcome-meteor-cordova)
42+
- Why: To show how to set up a Meteor app with Cordova for mobile usage
43+
- Stack: Meteor, Cordova
44+
- Meteor Version: 3.4
45+
46+
#### React Tutorial App
47+
- Demo: N/A
48+
- Tutorial: [docs.meteor.com/tutorials/react](https://docs.meteor.com/tutorials/react/)
49+
- Repository: [meteor/meteor3-react (3.4-rspack)](https://github.com/meteor/meteor3-react/tree/3.4-rspack)
50+
- Why: To show how to build a Meteor app with React following the official tutorial
51+
- Stack: Meteor, Rspack, React
52+
- Meteor Version: 3.4
53+
54+
#### Solid Tutorial App
55+
- Demo: N/A
56+
- Tutorial: [docs.meteor.com/tutorials/solid](https://docs.meteor.com/tutorials/solid/)
57+
- Repository: [meteor/meteor3-solid (3.4-rspack)](https://github.com/meteor/meteor3-solid/tree/3.4-rspack)
58+
- Why: To show how to build a Meteor app with Solid following the official tutorial
59+
- Stack: Meteor, Rspack, Solid
60+
- Meteor Version: 3.4
61+
62+
#### Vue 3 Tutorial App
63+
- Demo: N/A
64+
- Tutorial: [docs.meteor.com/tutorials/vue](https://docs.meteor.com/tutorials/vue/meteorjs3-vue3.html)
65+
- Repository: [meteor/meteor3-vue3 (3.4-rspack)](https://github.com/meteor/meteor3-vue3/tree/3.4-rspack)
66+
- Why: To show how to build a Meteor app with Vue 3 following the official tutorial
67+
- Stack: Meteor, Rspack, Vue 3
68+
- Meteor Version: 3.4
69+
70+
#### Blaze Tutorial App
71+
- Demo: N/A
72+
- Tutorial: [docs.meteor.com/tutorials/blaze](https://docs.meteor.com/tutorials/blaze/)
73+
- Repository: [meteor/meteor3-blaze (3.4-rspack)](https://github.com/meteor/meteor3-blaze/tree/3.4-rspack)
74+
- Why: To show how to build a Meteor app with Blaze following the official tutorial
75+
- Stack: Meteor, Rspack, Blaze
76+
- Meteor Version: 3.4
77+
78+
#### Svelte Tutorial App
79+
- Demo: N/A
80+
- Tutorial: [docs.meteor.com/tutorials/svelte](https://docs.meteor.com/tutorials/svelte/)
81+
- Repository: [meteor/meteor3-svelte (3.4-rspack)](https://github.com/meteor/meteor3-svelte/tree/3.4-rspack)
82+
- Why: To show how to build a Meteor app with Svelte following the official tutorial
83+
- Stack: Meteor, Rspack, Svelte
84+
- Meteor Version: 3.4
85+
86+
### To migrate - WIP
87+
588
#### Tic tac toe
689
- Demo: [tic-tac-toe.meteorapp.com](https://tic-tac-toe.meteorapp.com)
790
- Repository: [meteor/examples/tic-tac-toe](./tic-tac-toe)
@@ -10,21 +93,6 @@
1093
- Last Updated At: Sep/06/2022
1194
- Meteor Version: 2.7.3
1295

13-
#### Simple Tasks
14-
- Demo: [simpletasks.meteorapp.com/](https://simpletasks.meteorapp.com)
15-
- Repository: [fredmaiaarantes/simpletasks](https://github.com/fredmaiaarantes/simpletasks)
16-
- Why: To show how to use Meteor with [Chakra UI](https://chakra-ui.com/) + [Formik](https://formik.org/) + MongoDB
17-
- Stack: Meteor, Chakra UI, React, Formik, MongoDB
18-
- Last Updated At: Apr/07/2021
19-
- Meteor Version: 2.1.1
20-
21-
#### Complex Svelte Todos
22-
- Demo: [complex-todos-svelte.meteorapp.com/](https://complex-todos-svelte.meteorapp.com)
23-
- Repository: [guncebektas/complex-todos-svelte](https://github.com/guncebektas/complex-todos-svelte)
24-
- Why: To show how to use Meteor in real world problems.
25-
- Stack: Meteor, Svelte, Bootstrap, MongoDB, Cypress
26-
- Last Updated At: Aug/21/2021
27-
2896
#### Chakra UI
2997
- Demo: [chakraui.meteorapp.com](https://chakraui.meteorapp.com/)
3098
- Repository: [meteor/examples/chakra-ui](./chakra-ui)
@@ -41,22 +109,6 @@
41109
- Last Updated At: Nov/10/2022
42110
- Meteor Version: 2.8
43111

44-
#### Wantch: Manage Movies to Watch
45-
- Demo: [wantch.meteorapp.com](https://wantch.meteorapp.com)
46-
- Repository: [filipenevola/wantch](https://github.com/filipenevola/wantch)
47-
- Why: To show how simple is to create an app using Meteor Methods and React
48-
- Stack: Meteor, React and PWA
49-
- Last Updated At: Feb/25/2021
50-
- Meteor Version: 2.1
51-
52-
#### Double app
53-
- Demo: [double-app.meteorapp.com](https://double-app.meteorapp.com)
54-
- Repository: [denihs/double-app](https://github.com/denihs/double-app/)
55-
- Why: To show how to have two apps with different purposes, but sharing the same codebase.
56-
- Stack: Meteor and React
57-
- Last Updated At: Mar/19/2021
58-
- Meteor Version: 2.1
59-
60112
### Leaderboards
61113
- Demo: N/A
62114
- Repository [meteor/leaderboards](https://github.com/meteor/leaderboard/)
@@ -97,31 +149,32 @@
97149
- Last Updated At: May/19/2025
98150
- Meteor Version: 3.2.2
99151

100-
### WIP
101-
#### Parties
152+
### Parties
102153
- Demo: N/A
103154
- Repository: [meteor/examples/parties](./parties)
104155
- 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.
105156
- Stack: Meteor, Blaze
106157
- Last Updated At: August/23/2021
107158
- Meteor Version: 2.3.5
108159

109-
#### Native app with Cordova
110-
- Demo: N/A
111-
- Repository: [meteor/examples/cordova](./cordova)
112-
- Why: To show how to set up a proper Native app with Meteor and Cordova
113-
- Stack: Meteor and Cordova
114-
- Last Updated At: May/22/2020
115-
- Meteor Version: 1.10.3
116-
117160
## How to add your example?
118161

119162
- Create a PR including it in this README
120-
- Make sure you are using the latest Meteor
163+
- Make sure you are using the latest Meteor (Meteor 3.x)
121164
- Required fields: Repository, Why, Stack, Last Updated At and Meteor Version.
122165

123166
## Housekeeping
124167

125168
We want to list only up-to-date examples here.
126169

127170
If you see old examples that are no longer representing the current state of Meteor or that are not working please open a PR removing it from here.
171+
172+
## Join the Meteor Renaissance!
173+
174+
Meteor 3 starts a new era for building web applications, with multiplatform support, realtime features, modern JavaScript patterns, and a simple starting point. It gives you the flexibility of Node.js together with built-in tools and ready-to-use packages, so you can stay focused on the product.
175+
176+
We're excited about what's to come and can't wait for you to join the Meteor renaissance!
177+
178+
For feedback, questions, or support, visit our [forums](https://forums.meteor.com/) or join our [Discord channel](https://discord.com/invite/3w7EKdpghq).
179+
180+
Follow us on [Twitter](https://x.com/meteorjs) and [GitHub](https://github.com/meteor).

0 commit comments

Comments
 (0)