File: control

package info (click to toggle)
node-async-stacktrace 0.0.2-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 112 kB
  • sloc: javascript: 234; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 1,102 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Source: node-async-stacktrace
Section: javascript
Priority: optional
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Utkarsh Gupta <guptautkarsh2102@gmail.com>
Testsuite: autopkgtest-pkg-nodejs
Build-Depends:
 debhelper-compat (= 13),
 node-vows,
 dh-sequence-nodejs
Standards-Version: 4.6.0
Homepage: https://github.com/Pita/async-stacktrace
Vcs-Git: https://salsa.debian.org/js-team/node-async-stacktrace.git
Vcs-Browser: https://salsa.debian.org/js-team/node-async-stacktrace
Rules-Requires-Root: no

Package: node-async-stacktrace
Architecture: all
Depends: ${misc:Depends},
Multi-Arch: foreign
Description: Improve Node.js stacktraces and make it easier to handle errors
 The "Async Stacktrace" module eases debugging of Node.js applications. With the
 default stacktraces, the problem is that they do not tell you exactly where
 a problematic subroutine has been called from.
 .
 The "Async Stacktrace" module shows you where an error was caught and passed to
 the next callback. This allows you to see from where problematic code was
 called.