node-asap 2.0.6-2 source package in Ubuntu

Changelog

node-asap (2.0.6-2) unstable; urgency=medium

  * Team upload
  * Bump debhelper compatibility level to 12
  * Declare compliance with policy 4.5.0
  * Add "Rules-Requires-Root: no"
  * Add debian/gbp.conf
  * Add upstream/metadata
  * Use pkg-js-tools auto test & install

 -- Xavier Guimard <email address hidden>  Tue, 18 Feb 2020 15:20:28 +0100

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-asap_2.0.6-2.dsc 2.0 KiB d492d57c4dbb6a0fcf8c133bcbb53a7f0982462ed45e739581c63f635a49eba9
node-asap_2.0.6.orig.tar.gz 38.7 KiB cf3b8a7310458bc078688ee6278a8fca567b32641994ff5b1c2b714d5e1eb90c
node-asap_2.0.6-2.debian.tar.xz 2.5 KiB 8bda212b137ffbd806e0f16500c7f9e8fe7dc5508cd85c480fe55988b6876ccb

Available diffs

No changes file available.

Binary packages built by this source

node-asap: High-priority task queue for Node.js and browsers

 This module executes a task after the scheduled tasks are over
 .
 ASAP strives to schedule events to occur before yielding for IO, reflow, or
 redrawing. ASAP provides a fast event queue that will execute tasks until it
 is empty before yielding to the JavaScript engine's underlying event-loop.
 When a task gets added to a previously empty event queue, ASAP schedules a
 flush event, preferring for that event to occur before the JavaScript engine
 has an opportunity to perform IO tasks or rendering, thus making the first
 task and subsequent tasks semantically indistinguishable. ASAP uses a
 variety of techniques to preserve this invariant on different versions of
 browsers and Node.js
 .
 Node.js is an event-based server-side JavaScript engine.