npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

neodax

v1.0.6

Published

NeoDAX — binary analysis, disassembler, CFG, symbolic execution, decompiler. x86-64 · AArch64 · RISC-V. Zero external dependencies.

Readme


Quick Start

# Clone and build
git clone https://github.com/VersaNexusIX/NeoDAX.git
cd NeoDAX && make
./neodax -x ./binary

# Or install via npm (no git clone needed)
npm install neodax
const neodax = require('neodax');

neodax.withBinary('/path/to/binary', bin => {
    console.log(bin.arch, bin.sha256);
    console.log(bin.sections().length, 'sections');
    console.log(bin.functions().length, 'functions');
});

Android / Termux:

pkg install nodejs clang make && make

Supported Formats & Architectures

| | x86-64 | AArch64 | RISC-V RV64 | |---------|:------:|:-------:|:-----------:| | ELF64/32 | ✓ | ✓ | ✓ | | PE64+/32 | ✓ | ✓ | — | | Mach-O 64 | ✓ | ✓ | — | | Mach-O FAT | ✓ | ✓ | — | | Raw | ✓ | ✓ | ✓ |


Feature Map

Core Analysis

| Feature | Flag | Description | |---|---|---| | Disassembly | (default) | x86-64, AArch64, RISC-V RV64GC | | Section listing | -l | vaddr, file offset, size, flags, insn count | | Hex bytes | -a | Raw bytes alongside instructions | | Symbol resolution | -y | ELF symtab/dynsym, PE exports, Mach-O nlist | | C++ demangling | -d | Itanium ABI | | Function detection | -f | Symbol-guided + heuristic (ELF, PE, Mach-O) | | Instruction groups | -g | call/branch/ret/stack/syscall color coding | | Cross-references | -r | Call + branch xref table | | String references | -t | Inline .rodata annotations | | CFG | -C | Two-pass — jump-trick & opaque predicate aware | | Loop detection | -L | Natural loops via dominator analysis | | Call graph | -G | Who calls whom | | Switch tables | -W | Jump-table pattern detection | | Unicode strings | -u | UTF-8 + UTF-16LE/BE with false-positive filter | | All standard | -x | All of the above |

Advanced Analysis

| Feature | Flag | JS API | Platform | |---|---|---|---| | Symbolic Execution | -P | .symexec(idx) | ARM64, x86-64 | | SSA Lifting | -Q | .ssa(idx) | ARM64 | | Decompiler | -D | .decompile(idx) | ARM64 | | Emulator | -I | .emulate(idx, regs) | ARM64 | | Entropy Analysis | -e | .entropy() | All | | Recursive Descent | -R | .rda(section) | ARM64, x86-64 | | Validity Filter | -V | .ivf() | ARM64, x86-64 | | Everything | -X | — | — |


npm Usage

npm install neodax

npm install automatically compiles the native addon. No git clone, no manual build step.

const neodax = require('neodax');

// One-liner with auto-close
neodax.withBinary('/path/to/binary', bin => {
    const r = bin.analyze();
    console.log(r.functions.length, 'functions,', r.xrefs.length, 'xrefs');
    console.log(bin.decompile(0));   // pseudo-C (ARM64)
    console.log(bin.entropy());      // packed/encrypted detection
});

TypeScript declarations included (js/index.d.ts) — no @types/neodax needed.

See NPM_USAGE.md for Express, Fastify, Docker, and TypeScript examples.


Web UI

node js/server/server.js
# → http://localhost:7070/ui

16 analysis panels: Overview · Sections · Symbols · Functions · CFG Blocks · Xrefs · Strings · Unicode · Disassembly · Decompiler · SSA · Symbolic Execution · Emulator · Entropy · Recursive Descent · Validity Filter


All CLI Flags

| Flag | Description | |------|-------------| | -a | Hex bytes | | -s <sec> | Target section (default .text) | | -S | All executable sections | | -A / -E | Start / end address (hex) | | -l | Section listing | | -n | No color | | -v | Verbose | | -y | Resolve symbols | | -d | Demangle C++ | | -f | Detect functions | | -g | Instruction group coloring | | -r | Cross-reference annotations | | -t | String reference annotations | | -C | Control flow graphs | | -L | Loop detection | | -G | Call graph | | -W | Switch/jump table detection | | -u | Unicode string scan | | -P | Symbolic execution | | -Q | SSA lifting | | -D | Decompile to pseudo-C | | -I | Emulate functions (ARM64) | | -e | Entropy analysis | | -R | Recursive descent disassembly | | -V | Instruction validity filter | | -x | All standard analysis | | -X | Everything | | -o <file> | Save .daxc snapshot | | -c | Convert .daxc.S | | -h | Help |


Documentation

| File | Description | |------|-------------| | BUILDING.md | Build instructions for all platforms | | NPM_USAGE.md | Using NeoDAX as an npm dependency | | PUBLISHING.md | CI/CD and npm publish guide | | CLI_REFERENCE.md | Complete CLI reference with examples | | API.md | C API reference | | ARCHITECTURE.md | Internal module design | | ALGORITHMS.md | CFG, entropy, RDA, SSA algorithms | | js/README.md | JavaScript API + REST server | | MACHO_SUPPORT.md | Mach-O / macOS format details | | DECOMPILER.md | SSA lifting and pseudo-C decompiler | | EMULATOR.md | ARM64 concrete emulator | | EXAMPLES.md | Usage recipes (CLI, JS, REST) | | FAQ.md | Frequently asked questions | | OBFUSCATION.md | Analyzing obfuscated/packed binaries | | UNICODE_DETECTION.md | Unicode scanner design | | FORMAT_DAXC.md | .daxc snapshot format spec | | PERFORMANCE.md | Benchmarks and optimization notes | | FUZZING.md | AFL++, libFuzzer, ASAN guide | | INTEGRATION.md | VS Code, Docker, Python, CI integration | | TROUBLESHOOTING.md | Build and runtime troubleshooting | | PORTING.md | Porting to new architectures/formats | | CICD_GUIDE.md | GitHub Actions workflows explained | | CONTRIBUTING.md | Contribution guidelines | | CODE_OF_CONDUCT.md | Community standards | | SECURITY.md | Vulnerability reporting | | CHANGELOG.md | Release history |


Requirements

  • C99 compiler: GCC ≥ 7 or Clang ≥ 6 (Clang 21 on Termux ✓)
  • GNU make (or gmake on BSD)
  • Zero external libraries
  • For JS addon / npm: Node.js ≥ 16 with dev headers

License

MIT — see LICENSE.