dida

A setInterval interface for async method.

Usage no npm install needed!

<script type="module">
  import dida from 'https://cdn.skypack.dev/dida';
</script>

README

Build Status

About

interval is a setInterval interface for async method.

Install


$ npm install dida

Usage


var _me = require('dida').create(function (sql) {
  /**
   * @ suppose an async function as _db.query
   */
  _db.query(sql, function (e, res) {
    _me.next();
  });
}, {'interval' : 100});
_me.run('SELECT SLEEP(1)');

License

MIT