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

@poriyaalar/telemetry

v0.1.1

Published

A lightweight telemetry service

Readme

📊 Telemetry Service for Firebase & Sentry

A lightweight telemetry service for React apps, supporting Firebase Analytics, Firebase Performance, and Sentry error tracking using the Firebase Modular SDK.

🚀 Features

✅ Firebase Analytics (logEvent, setUserId) ✅ Firebase Performance Monitoring ✅ Sentry Error Logging (captureException, setUser) ✅ Supports both JavaScript and TypeScript React Apps ✅ Tree-shakable (Reduces Bundle Size)

📦 Installation

Install via NPM:

npm install your-npm-package-name

🔥 Usage

1️⃣ Import the Package

import Telemetry from "your-npm-package-name";

2️⃣ Initialize Telemetry

const telemetry = new Telemetry({ firebase: { apiKey: "YOUR_FIREBASE_API_KEY", authDomain: "YOUR_FIREBASE_AUTH_DOMAIN", projectId: "YOUR_FIREBASE_PROJECT_ID", storageBucket: "YOUR_FIREBASE_STORAGE_BUCKET", messagingSenderId: "YOUR_FIREBASE_MESSAGING_SENDER_ID", appId: "YOUR_FIREBASE_APP_ID", measurementId: "YOUR_FIREBASE_MEASUREMENT_ID", }, sentry: { dsn: "YOUR_SENTRY_DSN", environment: "production", }, });

3️⃣ Log Events

telemetry.logEvent("button_click", { buttonName: "Sign Up" });

4️⃣ Set User Details

telemetry.setUserDetails({ uid: "12345", email: "[email protected]", username: "exampleUser", });

5️⃣ Log Errors

try { throw new Error("Something went wrong!"); } catch (error) { telemetry.logError(error); }

✅ Works with JavaScript React Apps

If you’re using JavaScript instead of TypeScript, just import and use it as:

import Telemetry from "your-npm-package-name";

const telemetry = new Telemetry({ firebase: { /* Firebase Config */ }, sentry: { dsn: "..." } });

🧪 Running Unit Tests

This package includes unit tests using Jest.

1️⃣ Install Development Dependencies

npm install --save-dev jest ts-jest @types/jest

2️⃣ Run Tests

npm test

✅ Expected Output:

PASS src/Telemetry.test.ts ✓ should initialize Firebase and Sentry ✓ should log an event ✓ should set user details ✓ should log an error

🤝 Contributing 1. Clone this repo:

git clone https://github.com/your-username/telemetry-service.git

2.	Install dependencies:

npm install

3.	Run tests:

npm test

4.	Open a Pull Request to contribute 🎉

📝 License

This project is licensed under the MIT License.

🚀 Future Improvements

✅ Add more telemetry providers (e.g., LogRocket, Amplitude) ✅ Add custom logging levels ✅ Optimize Firebase performance metrics

Now, your README.md is professional, clear, and ready for NPM! 🚀 Would you like a GitHub workflow (CI/CD) setup for automated testing & publishing? 🎯