Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Reduce JavaScript CPU usage by asynchronous iteration.
Provides asynchronous iteration functions that have a Promise based interface and it can execute with low CPU usage. Each iteration adds delay if the processing is heavy to maintain the CPU stability. Iterate without delay if processing is fast. Therefore, it will realize friendly processing for your machine. It can execute JavaScript without "Warning: Unresponsive Script" alert in the browser.
You can use it in any JavaScript environment (Browser, Electron, Node.js).
coolit.js is inspired by chillout.js.
ES2017 Async Functions support environments
or Polyfill + Transpiler
$ npm install coolit
// ESM
import { coolit } from "coolit";
// or CJS
const { coolit } = require("coolit");
ES2018 Async Iterators support environments
(async () => {
let sum = 0;
for await (const i of coolit([1, 2, 3, 4, 5])) {
// heavy task
sum += i;
}
console.assert(sum === 15);
})();
(async () => {
let sum = 0;
const iter = coolit([1, 2, 3, 4, 5]);
for (;;) {
const { value: i, done } = await iter.next();
if (done) break;
// heavy task
sum += i;
}
console.assert(sum === 15);
})();
(async () => {
let sum = 0;
function* heavyTask() {
for (const i of [1, 2, 3, 4, 5]) {
yield;
// heavy task
sum += i;
}
}
for await (const _ of coolit(heavyTask())) {
}
console.assert(sum === 15);
})();
coolit();
Create endless generator throttled by requestIdleCallback
.
coolit(iterable, option);
Create new generator throttles consumption of the given generator.
iterable
: Iterable or AsyncIterable should be consumed slowlyoption.mind
: [Optional] how to cool process (give the instance created by xxxMind API)endless();
Create endless IterableIterator.
idleMind();
Coolit Mind by requestIdleCallback
animationFrameMind();
Coolit Mind by requestAnimationFrame
intervalMind(msec);
Coolit Mind by constant interval
task execution time doesn't affect delay
throttleMind(msec);
Coolit Mind by throttling
task execution time affects delay
FAQs
Reduce JavaScript CPU usage by asynchronous iteration.
The npm package coolit receives a total of 0 weekly downloads. As such, coolit popularity was classified as not popular.
We found that coolit 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.