node-stack-utils 1.0.2-2 source package in Ubuntu

Changelog

node-stack-utils (1.0.2-2) unstable; urgency=medium

  * Team upload
  * Declare compliance with policy 4.5.0
  * Add "Rules-Requires-Root: no"
  * Add debian/gbp.conf
  * Add upstream/metadata
  * Use pkg-js-tools auto test & install
  * Drop unneeded version constraints from (build) dependencies
  * Ignore one test that fails with Node.js ≥ 12

 -- Xavier Guimard <email address hidden>  Fri, 24 Jan 2020 16:18:08 +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

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-stack-utils_1.0.2-2.dsc 2.2 KiB 488fc345175b61f2086e0c5684800e4c6793ced526fc9f08dd99e8fd386217e6
node-stack-utils_1.0.2.orig.tar.gz 12.4 KiB b8206de2b8f3d64d43a75c919762e30f32b4a0ab16aeb42ed3e76edd2301b11d
node-stack-utils_1.0.2-2.debian.tar.xz 4.2 KiB c688ee9d074edc867aef27c5c4908f7c1e3aa18afc588ddb2deb6a282a1df597

Available diffs

No changes file available.

Binary packages built by this source

node-stack-utils: Captures and cleans stack traces

 This modules provides API for working with nodejs stack traces.
 Ones could create new stack traces instance simulating for instance
 deep call of function, or clean existing stack trace. This API
 includes function to call up and down on stack trace.
 .
 In computing, a stack trace (also called stack backtrace or
 stack traceback) is a report of the active stack frames
 at a certain point in time during the execution of a program.
 Programmers commonly use stack tracing during interactive
 and post-mortem debugging. A stack trace allows tracking
 the sequence of nested functions called - up to the point
 where the stack trace is generated.
 In a post-mortem scenario this extends up to the function
 where the failure occurred
 .
 Node.js is an event-based server-side JavaScript engine.