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

adb-webui

v1.0.1

Published

A beautiful, browser-based ADB APK installer and Android device manager

Readme

adb-webui

A web-based ADB tool that runs locally in your browser. Install APKs, manage packages, reboot your device — without touching the terminal.

npm npm downloads License: MIT Node.js


adb-webui screenshot


What it does

  • Drag and drop an APK → click install. Done.
  • Auto-detects connected ADB devices, refreshes every 8 seconds
  • Live log output over WebSocket so you can see exactly what ADB is doing
  • Browse and uninstall installed packages from a list
  • Quick actions: reboot, recovery, bootloader, logcat, kill/start ADB server
  • Confirmation dialog before anything destructive
  • Works even if adb isn't in your PATH — just point it to the binary in settings

No Electron. No framework. Just Node.js and a browser tab.


Getting started

Run without installing

npx adb-webui

Opens at http://localhost:3737 automatically.

Install globally

npm install -g adb-webui

Then just run adb-webui from anywhere.

Clone and run

git clone https://github.com/shubhamsoni24/adb-web.git
cd adb-web
npm install
npm start

Requirements


Enable USB Debugging

  1. Go to Settings → About Phone
  2. Tap Build Number 7 times to unlock Developer Options
  3. Go to Settings → Developer Options → turn on USB Debugging
  4. Plug in your phone and accept the prompt

ADB not found?

If you get an error about ADB not being found, go to the Settings tab inside the app and set the path manually:

C:\platform-tools\adb.exe    # Windows
/usr/local/bin/adb           # macOS / Linux

Project structure

adb-web/
├── server.js       # Express backend, ADB commands, WebSocket
├── index.html      # Frontend (vanilla JS/CSS, no build step)
├── bin/adb-webui.js  # CLI entry point for npx
└── package.json

Security

  • Only a small set of ADB shell commands are allowed through the UI
  • APKs are stored locally on your machine, never uploaded anywhere
  • The server only listens on localhost — not accessible from other devices

Contributing

PRs are welcome. If you find a bug or want a feature, open an issue first so we can talk about it before you spend time building it.


Roadmap

  • [ ] Batch install multiple APKs at once
  • [ ] Wireless ADB connect from the UI
  • [ ] File transfer (push/pull)
  • [ ] Screenshot and screen recording

License

MIT © shubhamsoni24