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

@riandycandra/noxlog

v1.0.4

Published

Silent, universal application monitoring and version logging service.

Readme

🕵️ Noxlog

Noxlog is a silent, universal application monitoring and version logging service. It scans your installed software, categorizes them by purpose, and sends beautifully styled HTML email reports whenever a change is detected (new installs or version updates).

Designed to be run as a recurring background service (cronjob), Noxlog ensures you always have a clear, automated pulse on your software environment without any manual effort.


✨ Key Features

  • 🔍 Intelligent Scanning: Retrieves all non-system applications and their precise versions.
  • 🏷️ Auto-Categorization: Automatically groups apps into categories like Development, DevOps, Productivity, and Communication.
  • 🔔 Delta Notifications: Only sends email reports when changes are detected (reduces inbox noise).
  • 📧 Premium HTML Reports: Receive sleek, modern email reports with status badges and full inventory tables.
  • 🌐 OS-Aware Branding: Automatically adapts its visual identity (logos/icons) based on the host operating system.
  • 💾 Historical Tracking: Maintains a local installed_apps.json to track state changes over time.

🚀 Getting Started

1. Prerequisites

  • Node.js (v16+)
  • macOS (Universal support coming soon)

2. Installation

You can install Noxlog locally for development or globally to use the CLI command anywhere.

Global Installation (Recommended):

npm install -g @riandycandra/noxlog

Local Development:

git clone https://github.com/riandycandra/Noxlog.git
cd noxlog
npm install

3. Configuration

When using the global noxlog command, the tool looks for configuration and saves history in your current working directory.

  1. Create a .env file in the folder where you intend to run your scans:

    # Create .env in your current folder
    touch .env
  2. Edit .env with your SMTP credentials to enable email alerts:

  • EMAIL_HOST: Your SMTP server (e.g., smtp.gmail.com)
  • EMAIL_PORT: SMTP port (e.g., 465 or 587)
  • EMAIL_SECURE: Use SSL/TLS (true for 465, false for 587)
  • EMAIL_USER: Your email address
  • EMAIL_PASS: Your app-specific password
  • EMAIL_TO: Recipient address

[!TIP] If you are setting up an automated task (like Cron or Task Scheduler), ensure the command is executed within the folder containing your .env file so it can load your settings correctly.

4. Usage

Run a manual scan using the global command:

noxlog

Export results to a specific format:

# Export to Excel
noxlog -o xlsx

# Export to Markdown
noxlog -o md

# Export to HTML
noxlog -o html

# Show help
noxlog --help

# Show version
noxlog --version

🛠️ Roadmap (TODO)

  • [x] Windows Support: Implement wmic or Get-ItemProperty scanners for Windows environments.
  • [ ] Linux Support: Add support for dpkg, rpm, and snap package managers.
  • [ ] Dashboard UI: A local web interface to visualize software trends over time.
  • [x] Export Options: Support for Excel, Markdown, or HTML export formats.
  • [ ] Slack/Discord Integration: Send change alerts directly to chat channels.
  • [ ] Dependency Audit: Integrate security vulnerability scanning for installed versions.
  • [x] Global CLI: Convert the project into an NPM package to support npx noxlog or global noxlog commands.

📄 License

This project is licensed under the ISC License - see the LICENSE file for details.


Generated with 🕵️ by Noxlog.