node-through 2.3.8+~cs0.0.30-1 source package in Ubuntu

Changelog

node-through (2.3.8+~cs0.0.30-1) unstable; urgency=medium

  * Team upload

  [ Debian Janitor ]
  * Trim trailing whitespace.
  * Use secure copyright file specification URI.
  * Bump debhelper from old 9 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * Update Vcs-* headers from URL redirect.
  * Use canonical URL in Vcs-Git.
  * Apply multi-arch hints.
    + node-through: Add Multi-Arch: foreign.

  [ Vivek K J ]
  * Embed typescript definitions and repack

  [ Xavier Guimard ]
  * Bump debhelper compatibility level to 13
  * Declare compliance with policy 4.5.1
  * Add "Rules-Requires-Root: no"
  * Change section to javascript
  * Use dh-sequence-nodejs auto install (Closes: #974360)
  * Fix copyright
  * Enable upstream test using tape

 -- Xavier Guimard <email address hidden>  Wed, 13 Jan 2021 15:10:51 +0100

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
javascript
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

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-through_2.3.8+~cs0.0.30-1.dsc 2.4 KiB a71de359573f8b7c6291719530565ecf2bca0ce2645ec6c60efc0775ff65853b
node-through_2.3.8+~cs0.0.30.orig-types-through.tar.gz 1.6 KiB 6843b56aa1424faacb8b763d5e07474250b2ec7851111fb3afc34ca73fd3da58
node-through_2.3.8+~cs0.0.30.orig.tar.gz 4.4 KiB 16b27a8c0fb13e5727356b328d72dbbc5f20bd909252f14d19da344e9354573e
node-through_2.3.8+~cs0.0.30-1.debian.tar.xz 7.8 KiB 1782e12e3b1ab25b84730334c33e1a9129c0e2ade2db3664dc5d47f3afefaf03

Available diffs

No changes file available.

Binary packages built by this source

node-through: simplified stream construction

 Easy way to create a Stream that is both readable and writable.
 .
    Pass in optional write and end methods.
    through takes care of pause/resume logic if you use this.queue(data)
    instead of this.emit('data', data).
    Use this.pause() and this.resume() to manage flow.
    Check this.paused to see current flow state.
    (write always returns !this.paused).
 .
 This function is the basis for most of the synchronous streams in event-stream.
 .
 Node.js is an event-based server-side JavaScript engine.