node.js - debug core file generated by nodejs application -


what best tool debug core files generated nodejs, using node version 0.10.x.

i looking through https://github.com/nodejs/llnode nodejs plugin lldb, seems work v4.x/v6.x

any pointer appreciated.

with regards, -m-

if requirement specific crash dump, @ failing context before deciding debugger - example:

(i) if crash in c code (libuv, c-cares etc) native debugger platform (gdb|dbx|lldb|windbg...) great job navigate through frames.

(ii) if crash in c++ (node.js core), same applies.

(iii) if crash in js (core libraries | app) please see if idde of - provides sophisticated abstractions on core file structures.


Comments

Popular posts from this blog

How to understand 2 main() functions after using uftrace to profile the C++ program? -

c# - Update a combobox from a presenter (MVP) -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -