node-emittery 1.0.1-1 source package in Ubuntu

Changelog

node-emittery (1.0.1-1) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints
    + node-emittery: Add Multi-Arch: foreign.

  [ Yadd ]
  * New upstream version 1.0.1

 -- Yadd <email address hidden>  Sun, 20 Nov 2022 07:29:42 +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

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-emittery_1.0.1-1.dsc 2.1 KiB 63cfc8456e483bb6e20c45c8b0025c656a187a76a035dd476442663571dfb1e3
node-emittery_1.0.1.orig.tar.gz 831.6 KiB 485a6efb167fcb084ade0de83d779cf3b81ef0771e5b05ad2713e494b82d115b
node-emittery_1.0.1-1.debian.tar.xz 5.3 KiB d08db298bf97222f9d379ef2c8a7df7d9c8e870b53f04f477c51ec6a0eb57101

Available diffs

No changes file available.

Binary packages built by this source

node-emittery: Nodejs simple and modern async event emitter

 Emitting events asynchronously is important for production code where you
 want the least amount of synchronous operations. Since JavaScript is
 single-threaded, no other code can run while doing synchronous operations.
 For Node.js, that means it will block other requests, defeating the strength
 of the platform, which is scalability through async. In the browser, a
 synchronous operation could potentially cause lags and block user interaction.
 .
 emittery solves this providing a simple but powerful API.