|
|
|
|
|
by Siyfion
4004 days ago
|
|
It's completely different from ES6, it's a full-stack framework, so it does SO much more than just a front-end framework. 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 |
|