
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
backburner.js
Advanced tools
Backburner.js is a simple run loop-esque library for coalescing actions
A rewrite of the Ember.js run loop as a generic microlibrary.
A priority queue that will efficiently batch, order, reorder and process work; done via scheduling work on specific queues.
Constructor | Description |
---|---|
new Backburner() | instantiate a Backburner instance with an array of queue names |
Method | Description |
---|---|
Backburner#run | execute the passed function and flush any deferred actions |
Backburner#defer | defer the passed function to run inside the specified queue |
Backburner#deferOnce | defer the passed function to run inside the specified queue, only execute it once |
Backburner#setTimeout | execute the passed function in a specified amount of time |
Backburner#debounce | execute the passed function in a specified amount of time, reset timer upon additional calls |
Backburner#throttle | rate-limit the passed function for a specified amount of time |
Backburner#cancel | cancel a deferOnce , setTimeout , debounce or throttle |
Backburner#on | Add an event callback. Supports the following events:
|
Backburner#off | Removes an event callback |
Backburner#join | Join the passed method with an existing queue and execute immediately, if there isn't one use Backburner#run |
Backburner#getDebugInfo | Returns debug information for counters, timers and queues, which includes surfacing the stack trace information for the respective calls |
Alias | Description |
---|---|
Backburner#schedule | same as defer |
Backburner#scheduleOnce | same as deferOnce |
Backburner#later | same as setTimeout |
The following code will only cause a single DOM manipulation:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Backburner demo</title>
</head>
<body>
<div id="name"></div>
<script type="module">
import Backburner from './dist/es6/backburner.js'
var backburner = new Backburner(['render']),
person = {name: 'Erik'};
function updateName() {
document.querySelector('#name').innerHTML = person.name;
}
function setName(name) {
person.name = name;
backburner.deferOnce('render', updateName);
}
backburner.run(function() {
setName('Kris');
setName('Tom');
setName('Yehuda');
});
</script>
</body>
</html>
v2.8.0 (2023-11-17)
scheduleOnce
works correctly following a cancelled job (@davidtaylorhq)FAQs
Backburner.js is a simple run loop-esque library for coalescing actions
The npm package backburner.js receives a total of 50,675 weekly downloads. As such, backburner.js popularity was classified as popular.
We found that backburner.js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.