Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <blockquote> <p>how long would it take me to port my existing code over to Meteor</p> </blockquote> <p>That depends on you. I haven't had any project written in the "traditional way" that has not been rewritten for Meteor. But as far as I have observed, I have written less code with Meteor due some things that are taken care of by Meteor, especially the trivial tasks like linking a DB, having the client talk to the server seamlessly, hot-code, deployment etc.</p> <blockquote> <p>what advantages does it offer over Angular?</p> </blockquote> <p>This depends on the use case. Meteor is fully JS on both front-end and back-end. Also, one can literally share code for both sides, like in the case of Collection declarations. Also, it has taken care of most of the trivial things like basic user management, templating. It also sports a package management system <a href="https://github.com/oortcloud/meteorite/" rel="nofollow">Meteorite</a> which is similar to Bower on the client or Npm on the Node.</p> <p>A disadvantage of Meteor is that it's tightly bound to the backend because of the way they do things, like the socket sync and MongoDB-MiniMongo link. There are packages though that can detach it from the server and work offline but I haven't come across with a project that uses another backend (like PHP or Java) for Meteor.</p> <blockquote> <p>how much bandwidth does Meteor use?</p> </blockquote> <p>All I can say about Meteor is that it loads <em>everything</em> on first load (scripts, templates, immediately visible resources, Mongo collections). I assume they are cached on the client, so later loads won't be affected. Database changes sync fast over sockets since after the initial sync, only changes are wired through.</p> <blockquote> <p>good (and free) resources to learn Meteor?</p> </blockquote> <p>The only resources I refer to is <a href="http://docs.meteor.com/" rel="nofollow">their documentation</a>. There's also an <a href="https://github.com/oortcloud/unofficial-meteor-faq" rel="nofollow">unofficial faq</a>. </p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload