1.0.0 • Published 9 years ago
xtimer v1.0.0
xtimer
Lightweight solution for timers with timeouts and intervals
Install
npm install xtimer
Get started
This peace of code
const timer = require("xtimer")
timer({
timeout: 0,
interval: 1000,
callback: function(...args) {
console.log(...args)
},
args: [1, "second", { a: 1 }]
})
Will output into the console every second without timeout
1 'second' { a: 1 }
Options
It's the object to pass into timer
function
required | name | type | description | default |
---|---|---|---|---|
yes | callback | Function | function to execute | |
no | args | Array | arguments to pass into callback | [] |
no | interval | Number | time in ms between callback calls | 100 |
no | timeout | Number | timeout before first call | 0 |
1.0.0
9 years ago