node-asap 2.0.6+~2.0.0-1 source package in Ubuntu

Changelog

node-asap (2.0.6+~2.0.0-1) unstable; urgency=medium

  * Team upload
  * Use dh-sequence-nodejs instead of pkg-js-tools
  * Drop dependency to nodejs
  * Use GitHub tags, not npm registry
  * Embed typescript declarations and repack
  * New upstream version 2.0.6+~2.0.0

 -- Yadd <email address hidden>  Wed, 22 Dec 2021 16:47:56 +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
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-asap_2.0.6+~2.0.0-1.dsc 2.3 KiB 5b8377f46d5da6c517f13b5cd97ae6e51656e5a3e6d925cbbac699ff4e239c96
node-asap_2.0.6+~2.0.0.orig-types-asap.tar.gz 1.6 KiB 2e4c92c17c5461b4cf3028c84b7497015fd1dfcb193e05a63d14e8d3700f8d54
node-asap_2.0.6+~2.0.0.orig.tar.gz 38.7 KiB cf3b8a7310458bc078688ee6278a8fca567b32641994ff5b1c2b714d5e1eb90c
node-asap_2.0.6+~2.0.0-1.debian.tar.xz 3.2 KiB 2cdd2a88c02f121109a10fe1c0c23cdb5ca18c3d826273534e85eac75b47064f

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.