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

@kuntiwar/fixora-sdk

v1.0.2

Published

Fixora SDK - Capture frontend errors and get AI-powered fixes instantly.

Readme

🚧 Fixora is currently in active development. Launching BETA soon! For any details, email at [email protected]


Fixora is a next-generation, AI-driven error tracking and debugging platform. Instead of digging through endless stack traces, the Fixora SDK quietly captures anomalies inside your frontend JavaScript or React applications, pushes them to your multi-tenant backend, and delivers an exact, AI-generated solution detailing why the failure occurred and exactly what code blocks to correct.

🚀 Installation

Install the library using your preferred package manager:

npm install @kuntiwar/fixora-sdk
# OR
yarn add @kuntiwar/fixora-sdk
# OR
pnpm install @kuntiwar/fixora-sdk

🛠 Usage & Integration

Setting up Fixora requires just two lines of code. For maximum observability, you must initialize the SDK at the topmost level of your application (e.g., index.js, main.js, or App.jsx).

import { init } from "@kuntiwar/fixora-sdk";

// Initialize to instantly attach window.onerror and unhandledrejection listeners
init({
  apiURL: "http://localhost:4000/api", // Replace with your production API URL
  apiKey: "your-fixora-api-key"        // Acquire this via your Fixora Administrator Dashboard
});

What does it do?

Once init() is called, Fixora silently listens in the background. If any unhandled exceptions or rejected promises slip through your code, Fixora automatically scoops up the stack trace, the application state, and the URL environment, piping it down to the dashboard without interrupting your users.

✨ Features

  • Automated JavaScript Error Capturing: Globals handlers to catch everything before the browser crashes.
  • Generative AI Diagnostics: Don't just track the error—explain it and generate a code fix using Gemini Flash logic on the backend side.
  • Multi-tenant Architecture: Completely isolated storage. 100% of errors are grouped to your specific apiKey.
  • Intelligent Deduplication: Identical errors are grouped up to bump occurrence counters, avoiding log bloat.
  • Micro Latency: Less than 2kb packed. Performance first. Zero impact on load times.

🔗 Links

💡 License

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