An open API service indexing awesome lists of open source software.

https://github.com/hacknlove/reactive-interval

invalidate the computation each n miliseconds
https://github.com/hacknlove/reactive-interval

Last synced: 16 days ago
JSON representation

invalidate the computation each n miliseconds

Awesome Lists containing this project

README

          

```javascript

import { reactiveInterval } from 'meteor/hacknlove:reactive-interval'

Meteor.autorun(function () {
// ...
reactiveInterval(1000) // invalidate computation each 1000 miliseconds
// ...
})

Template.foo.helpers(function () {
// ...
reactiveInterval(1000)
// ...
})

```