Node module to process minidump files
Перейти к файлу
dependabot[bot] 83c4859716
build(deps): bump dsanders11/project-actions from 1.3.0 to 1.4.0 (#91)
Bumps [dsanders11/project-actions](https://github.com/dsanders11/project-actions) from 1.3.0 to 1.4.0.
- [Release notes](https://github.com/dsanders11/project-actions/releases)
- [Changelog](https://github.com/dsanders11/project-actions/blob/main/.releaserc.json)
- [Commits](eb760c4889...438b25e007)

---
updated-dependencies:
- dependency-name: dsanders11/project-actions
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-01 13:57:45 -07:00
.circleci chore: bump electronjs/node in .circleci/config.yml to 2.3.1 (#90) 2024-10-26 10:03:45 -04:00
.github build(deps): bump dsanders11/project-actions from 1.3.0 to 1.4.0 (#91) 2024-11-01 13:57:45 -07:00
deps feat: update breakpad to build on macOS 13+ (#69) 2023-10-09 16:39:32 -07:00
lib chore: run standard 2022-12-05 00:48:07 -08:00
test chore: bump electronjs/node to 2.1.0 (main) (#73) 2023-11-27 12:49:53 -08:00
.gitignore test: move from electron-download to @electron/get (#66) 2023-08-01 16:50:44 -07:00
.gitmodules feat: update breakpad to build on macOS 13+ (#69) 2023-10-09 16:39:32 -07:00
.releaserc.json build: do CFA releases (#63) 2023-09-11 09:08:37 -07:00
LICENSE.md Initial commit. 2013-11-15 16:15:14 +08:00
README.md build: do CFA releases (#63) 2023-09-11 09:08:37 -07:00
build.js build: add arm64 macOS support (#50) 2022-04-21 20:46:45 -07:00
index.d.ts chore: add `dump` typing 2021-04-08 20:28:17 +08:00
package.json build: fix repository.url in package.json (#88) 2024-09-07 12:55:32 -07:00
yarn.lock build(deps): bump braces from 3.0.2 to 3.0.3 (#85) 2024-06-27 14:47:47 -07:00

README.md

minidump - Process minidump files

CircleCI npm version

Installing

npm install minidump

Building (for development)

  • git clone --recurse-submodules https://github.com/electron/node-minidump
  • npm install

Docs

var minidump = require('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.