Package Exports
- macho-uuid
- macho-uuid/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (macho-uuid) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
BugSplat
Crash and error reporting built for busy developers.
macho-uuid
A nifty little library for reading unique identifiers from .app, .dSYM, and macOS binary files.
Command Line
- Install this package globally
npm i -g macho-uuid
- Run macho-uuid with
-h
to see the latest usage information:
bobby@BugSplat % ~ % macho-uuid -h
macho-uuid
A command line utility and library for reading the UUID of a .app, .dSYM, or
macOS binary file.
Usage
--path string Path to a .app, .dSYM, or macOS binary file.
-h, --help Print this usage guide.
Example
macho-uuid path-to-app-dsym-or-macos-binary-file
Links
🐛 https://bugsplat.com
💻 https://github.com/BugSplat-Git/macho-uuid
💌 support@bugsplat.com
- Run macho-uuid specifying a path to a
.app
,.dSYM
, or macOS binary file:
bobby@BugSplat % ~ % macho-uuid ./path/to/bugsplat.app
ac15902fba2e31c18b29da51e889b321
API
- Install this package locally
npm i macho-uuid
. - Create a new instance of
MachoFile
by awaiting a call to the static factory functionMachoFile.createFromFile
. This method accepts files with a.app
,.dSYM
, or empty extension.
const machoFile = await MachoFile.createFromFile('./path/to/bugsplat.app');
- Await a call to
getUUID()
to get the unique identifier for the file.
const uuid = await machoFile.getUUID();
🐛 About
BugSplat is a software crash and error reporting service with support for macOS, iOS, Qt, Unreal Engine and many more. BugSplat automatically captures critical diagnostic data such as stack traces, log files, and other runtime information. BugSplat also provides automated incident notifications, a convenient dashboard for monitoring trends and prioritizing engineering efforts, and integrations with popular development tools to maximize productivity and ship more profitable software.