Hacker News new | ask | show | jobs
by tomcam 4251 days ago
Kudos, Meteor team! Now, SQL, please...
1 comments

You can have SQL already, use ddp methods to query a database on the backend. It's not reactive, but it enables you to use SQL.
The data isn't reactively loaded in realtime, but Meteor itself is still reactive. What I mean to point out is that even if you're depending on say classic JSON APIs, the meteor app within itself can still do reactive-features (templates, local collections, etc). And depending how you implement things, you could still take advantage of push capabilities for your data from a legacy endpoint.

But yes, I agree, it's not ideal until a SQL adapter is available.