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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@uxbertlabs/aminah

v1.0.11

Published

Aminah - The Ultimate Reporting Tool (Web)

Readme

Aminah by Uxbert Labs

Bug reporting that works for Everyone

Transform how your team handles bug reports. Just one line of code. Let users capture, annotate, and submit issues in seconds while you focus on fixing them.

NPM Version License: MIT GitHub Stars

Website: https://aminah.uxbert.ai Repository: https://github.com/Uxbert-Engineering/aminah Powered by: Uxbert Labs


Why Aminah?

  • Lightning Fast Setup - Add one line of code. That's it.
  • 🎨 Visual Context - Users draw, highlight, and annotate directly on screenshots
  • 🔌 Smart Integration - Automatically creates tickets in Jira, Linear, GitHub via webhooks
  • 📊 Rich Metadata - Captures browser info, console logs, network requests automatically
  • 👥 Team Collaboration - Assign, prioritize, and track issues in real-time
  • 🎬 Session Replay - Watch exactly what happened before the bug

Features

  • Floating Action Button - Always accessible, non-intrusive widget
  • Auto Screenshot - Captures the current page instantly with annotations
  • Drawing Tools - Pen, arrows, rectangles, and color picker
  • Device Context - Auto-captures browser, OS, screen resolution, and viewport
  • JSON Export - Download complete issue reports locally
  • Webhook Integration - Connect to n8n, Zapier, or custom webhooks
  • Session Recording - Replay user actions leading to the bug
  • Console Logs - Automatic capture of browser console output

Quick Start

Seriously, it's this simple. Add this before your closing </body> tag and you're done:

<!-- Aminah Bug Reporter -->
<script src="https://cdn.jsdelivr.net/npm/@uxbertlabs/aminah/dist/aminah.standalone.min.js"></script>
<script>
  Aminah.init({
    webhook: "https://your-webhook-url.com",
    position: "bottom-right",
    features: {
      screenshots: true,
      annotations: true,
      sessionReplay: true,
      metadata: true,
    },
  });
</script>

Setup time: ~2 minutes | Bundle size: ~3KB gzipped


Installation

NPM Package

Perfect for React, Vue, Angular, or any modern JavaScript framework:

npm install @uxbertlabs/aminah

React/TypeScript Usage:

import Aminah from "@uxbertlabs/aminah";
import "@uxbertlabs/aminah/styles";

function App() {
  return (
    <div>
      {/* Your app content */}
      <Aminah
        config={{
          webhook: "https://your-webhook-url.com",
          ui: {
            position: "bottom-right",
            theme: "light",
          },
        }}
      />
    </div>
  );
}

CDN (Script Tag)

Perfect for static sites, WordPress, or vanilla JavaScript:

<script src="https://cdn.jsdelivr.net/npm/@uxbertlabs/aminah/dist/aminah.standalone.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@uxbertlabs/aminah/dist/aminah.css">
<script>
  Aminah.init({
    webhook: "https://your-webhook-url.com",
    ui: {
      position: "bottom-right",
      theme: "light",
    },
  });
</script>

Configuration

Aminah.init({
  // Required
  webhook: "YOUR_WEBHOOK_URL", // n8n, Zapier, or custom endpoint

  // UI Customization
  ui: {
    position: "bottom-right", // 'bottom-left', 'top-right', 'top-left'
    theme: "light", // 'light' or 'dark'
    zIndex: 9999,
  },

  // Feature Toggles
  features: {
    screenshots: true,
    annotations: true,
    sessionReplay: true,
    metadata: true,
    consoleLogs: true,
  },
});

API Reference

Core Methods

// Initialize Aminah
Aminah.init(config);

// Manually open the bug reporter
Aminah.open();

// Close the bug reporter
Aminah.close();

// Update configuration
Aminah.updateConfig({ ui: { theme: "dark" } });

// Destroy instance
Aminah.destroy();

Issue Management

// Get saved issues
const issues = Aminah.getSavedIssues();

// Export all issues
Aminah.exportAllIssues();

// Clear saved issues
Aminah.clearSavedIssues();

Event Listeners

// Issue created
Aminah.on("issue:created", (issue) => {
  console.log("New issue:", issue);
});

// Screenshot captured
Aminah.on("screenshot:captured", (screenshot) => {
  console.log("Screenshot:", screenshot);
});

// Reporter opened/closed
Aminah.on("reporter:opened", () => {});
Aminah.on("reporter:closed", () => {});

// Errors
Aminah.on("error", (error) => {
  console.error("Error:", error);
});

Browser Support

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Edge (latest)

License

MIT © Uxbert Labs


Support


Contributing

Contributions are welcome! Please see the main repository for development guidelines.