Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

coolit

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coolit

Reduce JavaScript CPU usage by asynchronous iteration.

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

coolit.js

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.

Requirement

ES2017 Async Functions support environments

or Polyfill + Transpiler

Usage

Install

$ npm install coolit

import

// ESM
import { coolit } from "coolit";
// or CJS
const { coolit } = require("coolit");

Bloking Style with ES2018 Async Iterators

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);
})();

Bloking Style without ES2018 Async Iterators

(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);
})();

Callback Style with ES2018 Async Iterators

(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);
})();

API

Coolit Engine

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 slowly
  • option.mind: [Optional] how to cool process (give the instance created by xxxMind API)
endless();

Create endless IterableIterator.

Coolit Mind

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

Keywords

FAQs

Package last updated on 25 Nov 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc