-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
super early discussion #1
Comments
hey @ffxsam, long time :) I had finally just started my first AppSync project when some banter in an old project issue inspired this little experiment. Your name popped up by chance (on an emoji-keyboard issue :)) and would greatly appreciate a word or two from you as someone who worked with Meteor, moved away, and actually spent a lot of time working with AppSync. (Note: this is still more an experiment than anything else, trying to decide how far to pursue it. But I do really miss making apps this way. Goal is to keep the same developer experience while addressing some of the short comings. Server will be serverless, first against MongoDB but potentially against others too, even AWS dynamo, etc... maybe :)) |
Hey, long time indeed! I'll be honest, Meteor is a pretty fast/easy developer experience, but in the long run, it's not worth it. We've had lots of issues with the platform, a lot revolving around subscriptions just breaking, or connections to MongoDB dying and not re-connecting (?!). Plus the idea of running 3 server containers on Galaxy ($150+/mo) is becoming an antiquated model with the rise of serverless architecture. I'm in the process of moving two large projects off of Meteor. For one app, the stack is:
The other stack will be:
Postgres is an amazing DB. It was a breath of fresh air going back to relational data and strict schemas, compared to MongoDB where anything goes (and can lead to issues). Plus with Postgres you have true JSON field types where you can store JSON data—very cool. That's a birds-eye view of what I'm working with. |
@ffxsam, that's really useful feedback. Thanks for taking the time to share all of this! And for your quick reply. Last Q: If you consider exclusively the developer experience - as separate from the issues that came with it - how does that compare to your developer experience with alternatives? Specifically, the pattern of a client-side database with its ease-of-use for queries/ops, reactive live results and optimistic updates. Also, just to clarify, this project is 100% independent of Meteor, and designed from inception to be highly and cheaply scalable (and maybe support other databases too). |
Just considering the developer experience (DX) alone, Meteor is tough to beat. It's nice having front-end and back-end in the same place, and having a whole user account system at your fingertips, etc. Having to build out a DB + AppSync API is not totally straightforward. It'll take me more time, but in the long run it will be way more scalable, more easily maintained, and more future-proofed. |
Thanks, @ffxsam; wonderfully succinct feedback, exactly what I'm looking for! 🙏 |
Continuing the discussion from gadicc/meteor-hmr#133 (comment)...
The text was updated successfully, but these errors were encountered: