node-emittery 0.12.1-1 source package in Ubuntu

Changelog

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

  * Team upload
  * New upstream version 0.12.1
  * Update test

 -- Yadd <email address hidden>  Thu, 18 Aug 2022 15:40:09 +0200

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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-emittery_0.12.1-1.dsc 2.0 KiB bef2868b310851e0c459280d5e6a7391468d288567349be08999afdff01773cb
node-emittery_0.12.1.orig.tar.gz 831.1 KiB 4e9761c13b66c100ec5062e3d4237ea0d7329cb9b4013c3c3a631943c343e247
node-emittery_0.12.1-1.debian.tar.xz 13.1 KiB 23d0732f04d6a5b2bc8754e06a49b2b5d9bba3a64a8589d6f9848b0647e14562

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.