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

wifi-inspector

v0.0.3

Published

Readme

A tool to inspect and manipulate WLAN-Connections for Laptops.

This utility will create a temporary folder and a file in the current directory, so best create a seperate folder for this. Run it with sudo, because it uses tools of aircrack-ng package in background.

The interface is simple, at the top, you have the console, click on it to enter commands.

Below there is a log console where you can see information-messages(light-blue), warnings(orange) and errors(red). Click on it to look throug it. Use UP and DOWN to navigate through the log. Use LEFT and RIGHT to jump 10 steps. The numbers on the 'log' line indicate the total number of messages and the current position from the latest entry. Warnings and Errors will automatically let the log jump to the newest entry, normal informations won't.

The 'main' window is where the results are visualized. You cannot yet do much in here but will be implemented sooner or later.

Commands: clean prep startMon stopMon startDump stopDump startAnalyse stopAnalyse analyse exportWC

Typical usage:

  1. prep use this command to create a temporary folder ("./wI-tmp/") for airodump. It will be created in current directory, so pay attention where you launch wifi-inspector. You can delete this folder by using clean command. WARNING: if you have no such folder created your system may fail and log out or reboot. fix will come later.

  2. startMon first disconnect from any wifi (only for some cards nesseccary) and run this command. It sets your wifi-card into Monitor mode to see wifi-traffic. Note the first white indicator next to 'main' that shows the status of monitor mode. To stop this mode enter stopMon.

  3. startDump this will launch airodump-ng, which in turn saves output in the temporary folder in a new file. airmon-ng (start with 'startMon') has to run for this there is a second light blue indicator for an active dump. WARNING: this may launch multiple instances of this process, so only use once or use stopDump first. Fix will come later.

  4. startAnalyse this will repeatedly run 'analyse', you can pass in a parameter which will be the interval in seconds. analyse means it reads the latest airodump-ng file in the temporary folder and saves the wifi information in a WifiCollector. The results are then displayed in the main window. There is a third blue indicator to visualize active analyse.

  5. stopAnalyse this will stop active analyse, but not the dump running behind the scenes!

  6. stopDump stops the background process running an airodump-ng instance. it will also create or update the file all-WC.csv in the current directory, which holds all information from all your analysations since its creation.

  7. stopMon sets the wifi card back to normal mode, airodump-ng will not see wifi-traffic anymore

  8. exportWC WC stands for WifiCollector, which collects all the information about surrounding wifi-devices. This command will export this information to a file called export-WC.csv in your current directory.

  9. clean if you want to have the files created by this program removed again from the current directory use this command. up to now it only cleans the temporary folder, not the export-WC.csv or all-WC.csv files.

Questions you can write me at [email protected]