The intended result is that if you are holding a piece of data, and you have a dep for it, you can ask the global dependency server whether it has changed by sending the key and version. The main benefit of this approach is that the application server doesn't need to be aware of which queries each client is currently tracking - the client can keep that knowledge for itself, reducing the burden on the server and giving the developer more options for controlling when new data is fetched.
meteor create simple-todos-angular
cd simple-todos-angular
meteor
open http://localhost:3000
#meteor
#london
meteor remove react
it'll also remove react-meteor-data
which you might want to add back in, and since jsx compiles to js, you need to import React from 'react'
wherever you're using ReactDOM
, even if not using React
yourself.