
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Enqueue *micro-tasks* and *macro-tasks* in browser and Node.js. Only [__0.3Kb__](https://bundlephobia.com/result?p=entask@1.4.0) in size.
Enqueue micro-tasks and macro-tasks in browser and Node.js. Only 0.3Kb in size.
In Node.js and browsers macro-tasks are functions scheduled to be executed in
future event loop cycles, for example setTimeout(fn, 0) will schedule fn to
be executed in one of the future event loop cycles.
On the other hand, all callbacks in micro-task queue will execute before the
current event loop cycle finishes, for example in Node.js callbacks scheduled using
process.nextTick(fn) will all execute in the current event loop cycle.
npm install entask
import {microtask, macrotask, asap} from 'entask';
macrotask(() => console.log('world!'));
microtask(() => console.log('Hello'));
// 👉 Hello world!
or
macrotask(() => console.log('C'));
microtask(() => console.log('B'));
console.log('A');
// 👉 A
// 👉 B
// 👉 C
microtaskWill schedule a micro-task, it will try to use the following methods in this order:
process.nextTickPromiseMutationObserverWebkitMutationObserverIf none of the methods are available, microtask itself will equal to null.
macrotaskWill schedue a macro-task, it will try to use the following methods in this order:
setImmediateMessageChannelwindow.postMessagesetTimeoutIf you are running in Node.js or browser environemnt, then macrotask will at least
default to setTimeout. If you are running in an evironment that does not even
have setTimeout method, macrotask may equal to null.
asapIt is defined as
const asap = microtask || macrotask;
i.e. asap will try to schedule a micro-task but fall back to scheduling a
macro-task.
You can also use light version.
import {microtask, macrotask, asap} from 'entask/lite';
It has the same API but does not include MutationObserver, because almost all
modern browsers will have Promise implementation. It also does not include
window.postMessage, because almost all modern browsers have MessageChannel
implementation available.
You can shim process.nextTick in your browser.
require('entask/shim/nexttick').install();
process.nextTick(() => { /* ... */ });
You can also shim setImmediate.
require('entask/shim/setimmediate').install();
setImmediate(() => { /* ... */ });
Unlicense — public domain.
FAQs
Enqueue *micro-tasks* and *macro-tasks* in browser and Node.js. Only [__0.3Kb__](https://bundlephobia.com/result?p=entask@1.4.0) in size.
We found that entask 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.