node-emittery 0.10.1-1 source package in Ubuntu

Changelog

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

  * New upstream version 0.10.1 (no changes except ts declarations)

 -- Yadd <email address hidden>  Thu, 24 Feb 2022 15:51:14 +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
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-emittery_0.10.1-1.dsc 2.0 KiB f93f6ba0fe06b2ab0090881b00ded94e8ed9aca810d547d3ca36e3cd802250c2
node-emittery_0.10.1.orig.tar.gz 831.6 KiB 42211a5b892c8d4673a6cb7950e2806f615a3da00a74c6e88988caea82cf39c7
node-emittery_0.10.1-1.debian.tar.xz 12.6 KiB e20ae7ef2bdaf3bcc2e25a5123d637dde4adc7f837e1b14b13a434c584809af0

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.