An open API service indexing awesome lists of open source software.

https://github.com/luser/elf.js

Simple ELF parser in JavaScript
https://github.com/luser/elf.js

Last synced: 12 months ago
JSON representation

Simple ELF parser in JavaScript

Awesome Lists containing this project

README

          

elf.js: A (very simple) ELF parser in JavaScript.

Relies heavily on typed arrays, as well as:
https://github.com/davidflanagan/BufferView
and DataView, or:
https://github.com/davidflanagan/DataView.js
and:
https://github.com/luser/uint64.js

Usage:
var elf = new ELF(buffer);
where |arraybuffer| is an ArrayBuffer containing the bytes of the ELF file.