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

@sie-js/apoxi-tool

v1.0.10

Published

CLI tools for APOXI phones.

Readme

NPM Version

SUMMARY

A console utility for working with APOXI-based phones (SGold/SGold2). Read more about APOXI.

Works on all major operating systems: Linux, macOS, and Windows.

[!NOTE] All these functions are also available from the browser: Web Tools.

INSTALL

OSX & Linux

  1. Install the latest version of Node.js.

  2. Install the package:

    npm install -g @sie-js/apoxi-tool@latest

Windows

  1. Find and install USB drivers for your phone.
  2. Install scoop: https://scoop.sh/
  3. Run in PowerShell:
    scoop bucket add main
    scoop install main/nodejs
    npm install -g @sie-js/apoxi-tool@latest

TIPS & TRICKS

  1. Only phones with NOR flash are supported. NAND support is coming soon.
  2. For maximum speed, use a USB cable.
  3. With a USB cable, you can read memory in both P-Test and Normal modes. A serial cable works only in P-Test mode.
  4. To enter P-Test mode: press the * and # keys simultaneously, then turn on the phone using the power key. You should see a rainbow screen.
  5. Usually, you don’t need to specify the PORT option, because it is detected automatically (by USB ID).

USAGE

Usage: apoxi-tool [options] [command]

CLI tool for APOXI phones.

Options:
  -v, --version              output the version number
  -p, --port <port>          serial port name (default: "/dev/ttyACM0")
  -b, --baudrate <baudrate>  limit maximum baudrate (0 - use maximum) (default: "0")
  -k, --key <key>            DWD key (auto/lg/panasonic/siemens or KEY1:KEY2) (default: "auto")
  -V, --verbose              increase verbosity
  -h, --help                 display help for command

Commands:
  unlock-bootloader          Unlock APOXI bootloader (allows using V-Klay)
  read-memory [options]      Read and save phone memory
  read-all-memory [options]  Read and save all available phone memory blocks
  list-memory                List available memory blocks
  list-ports                 List available serial ports
  bruteforce-dwd-keys        Brute-force DWD keys
  help [command]             Display help for a command

Unlock bootloader

Used for patching the boot mode to allow connections with flashers (e.g., V-Klay).

Replaces the two bytes FF02 with FFFF at address 0xA000000C.

apoxi-tool -p PORT unlock-bootloader

List all available memory blocks

apoxi-tool -p PORT list-memory

Dump a memory block

# Save dump in the current directory
apoxi-tool -p PORT read-memory -n SRAM

# Save dump as a specific file
apoxi-tool -p PORT read-memory -n SRAM -o ./SRAM.bin

# Dump a custom memory region by address and size
apoxi-tool -p PORT read-memory -a 0xA0000000 -s 128k -o ./bootcore.bin
apoxi-tool -p PORT read-memory -a 0xA0000000 -s 0x20000 -o ./bootcore.bin

Dump all available memory blocks

# Save dump in the current directory
apoxi-tool -p PORT read-all-memory

# Save dump in a specified directory
apoxi-tool -p PORT read-all-memory -o OUTPUT_DIR

# Dump all except FLASH
apoxi-tool -p PORT read-all-memory --exclude FLASH

# Dump only SRAM, RAM, and TCM
apoxi-tool -p PORT read-all-memory --include SRAM,RAM,TCM

Brute-force DWD keys

Used for brute-forcing DWD service keys.

This is useful for new, unknown APOXI-based phones. Keys for Siemens, Panasonic, and LG are already included in the program.

apoxi-tool -p PORT bruteforce-dwd-keys