Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bnoordhuis/node-backtrace
Prints a C++ and JS backtrace on SIGABRT.
https://github.com/bnoordhuis/node-backtrace
Last synced: about 1 month ago
JSON representation
Prints a C++ and JS backtrace on SIGABRT.
- Host: GitHub
- URL: https://github.com/bnoordhuis/node-backtrace
- Owner: bnoordhuis
- License: isc
- Created: 2013-03-20T20:46:11.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-11-04T12:30:54.000Z (about 9 years ago)
- Last Synced: 2024-04-15T02:37:12.928Z (7 months ago)
- Language: C++
- Size: 107 KB
- Stars: 8
- Watchers: 6
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
NODE-BACKTRACE
==============Prints a stack trace on SIGABRT. What sets it apart from other stack
trace tools is that it knows how to decode V8 JS frames.This tool is probably only useful for node.js add-on and core
developers.USAGE
=====The only requirement is that you load the module, i.e.:
require('backtrace');
process.abort(); // Trigger the SIGABRT handler.API
===backtrace.backtrace() - Prints a backtrace to stderr.
KNOWN BUGS
==========* Only supports i386 and x86_64 (ia32 and x64).
* Only tested on Linux and OS X.LICENSE
=======Copyright (c) 2013, Ben Noordhuis
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.