![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
priority based work scheduler for javascript.
<script src=schedula.min.js></script>
<script src=https://unpkg.com/schedula.js@0.1.0/schedula.min.js></script>
npm install md.js --save
// create a fiber
var fiber = schedula(60);
// push work
fiber.push(true, null, (a, b) => {
console.log(a, b);
}, 3, [1, 2]);
// slow things down, this will throttle work to a 20fps budget
schedule.budget = 20;
// speed things up, this will throttle work to a 60fps budget
schedule.budget = 60;
// context
var foo = {
bar: function (a, b) {
console.log(a, b);
}
}
fiber.push(true, foo, foo.bar, 3, [1, 2]);
// manually flush high priority work, without throttling
fiber.flush(true);
// manually flush low priority work, without throttling
push work
/**
* @param {boolean} priority - true for high priority
* @param {any} context - this context
* @param {function} callback - callback function
* @param {number} length - number of arguments passed
* @param {any[]} arguments - array of arguments passed
*/
manually flush work sync
/**
* @param {boolean} priority - true for high priority
*/
get/set budget
/**
* @type getter/setter
*/
get queued work.
/**
* @type getter
*/
FAQs
priority based work scheduler for javascript
The npm package schedula receives a total of 1 weekly downloads. As such, schedula popularity was classified as not popular.
We found that schedula demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.