Meteor Tracker icon
Meteor Tracker icon

Meteor Tracker

Meteor has a simple dependency tracking system which allows it to automatically rerun templates and other computations whenever Session variables, database queries, and other data sources change.

Cost / License

  • Free
  • Proprietary

Platforms

  • Online
-
No reviews
2likes
0comments
0news articles

Features

Suggest and vote on features
  1.  Goal Tracking
  2.  Team management
  3.  Goal management
  4.  Project Tracking
  5.  Team Collaboration

 Tags

Meteor Tracker News & Activities

Highlights All activities

Recent activities

Show all activities

Meteor Tracker information

  • Developed by

    US flagMeteor Development Group
  • Licensing

    Proprietary and Free product.
  • Alternatives

    169 alternatives listed
  • Supported Languages

    • English
Meteor Tracker was added to AlternativeTo by frkandris on and this page was last updated .
No comments or reviews, maybe you want to be first?
Post comment/review

What is Meteor Tracker?

Meteor icon Meteor has a simple dependency tracking system which allows it to automatically rerun templates and other computations whenever Session variables, database queries, and other data sources change.

Unlike most other systems, you don’t have to manually declare these dependencies — it “just works”. The mechanism is simple and efficient. When you call a function that supports reactive updates (such as a database query), it automatically saves the current Computation object, if any (representing, for example, the current template being rendered). Later, when the data changes, the function can “invalidate” the Computation, causing it to rerun (rerendering the template).

Applications will find Tracker.autorun useful, while more advanced facilities such as Tracker.Dependency and onInvalidate callbacks are intended primarily for package authors implementing new reactive data sources.