sigscan-ts
TypeScript
// Overview
Ultra-fast, zero-dependency binary signature scanner for Node.js and Bun. Brings IDA / Cheat Engine-style pattern matching to pure TypeScript.
// Built with
TypeScriptBunNode.jszero-dep
// The problem
Pattern-scanning binaries (IDA / Cheat Engine style) usually means a native module. In Node or Bun that is a build step and a portability headache.
// Approach
- A pure-TypeScript signature scanner with zero dependencies.
- IDA / Cheat Engine style pattern syntax, including wildcards.
- Runs the same on Node and Bun.
// Engineering challenges
- Matching native-module speed in pure TypeScript.
- Keeping the pattern parser fast on large buffers.
- Zero dependencies, so everything is hand-built.