https://github.com/electron/node-minidump
Node module to process minidump files
https://github.com/electron/node-minidump
Last synced: 3 months ago
JSON representation
Node module to process minidump files
- Host: GitHub
- URL: https://github.com/electron/node-minidump
- Owner: electron
- License: mit
- Created: 2013-11-15T09:06:08.000Z (over 12 years ago)
- Default Branch: main
- Last Pushed: 2026-04-04T18:08:41.000Z (3 months ago)
- Last Synced: 2026-04-06T20:04:48.152Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.52 MB
- Stars: 78
- Watchers: 16
- Forks: 45
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# minidump - Process minidump files
[](https://github.com/electron/node-minidump/actions/workflows/test.yml)
[](https://npmjs.org/package/minidump)
## Installing
```sh
npm install minidump
```
## Building (for development)
* `git clone --recurse-submodules https://github.com/electron/node-minidump`
* `npm install`
## Docs
```javascript
import minidump from 'minidump';
```
### minidump.addSymbolPath(path1, ..., pathN)
Add search paths for looking up symbol files.
### minidump.walkStack(minidumpFilePath, [symbolPaths, ]callback)
Get the stack trace from `minidumpFilePath`, the `callback` would be called
with `callback(error, report)` upon completion.
### minidump.dump(minidumpFilePath, callback)
Parse and dump the raw contents of the minidump as text using `minidump_dump`.
### minidump.dumpSymbol(binaryPath, callback)
Dump debug symbols in minidump format from `binaryPath`, the `callback` would
be called with `callback(error, minidump)` upon completion.