(no title)
Siyfion | 10 years ago
Meteor's main selling point is the reactivity; you can call `Books.insert({ name: "test" });` on the client, in-browser and it then updates the UI optimistically, updates the DB on the server AND propagates the change to all other clients, which in turn updates their UIs. All with one line of code.
Take a look at DDP, one of the core building-blocks of Meteor: https://www.meteor.com/ddp
joshburgess|10 years ago
xbryanx|10 years ago
curl https://install.meteor.com/ | sh
so much quicker (in the short term and long term) than reading a myriad of tutorials and then bashing my head against this configuration of several products for multiple weeks to get what Meteor provides as part of a single maintained and updated system.
btown|10 years ago
djmashko2|10 years ago
(I work at Meteor)
spinningarrow|10 years ago
I think the main benefit of Meteor is not that it's impossible to do what it does with other libraries/frameworks, but how easy it makes those things for you.