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

appambit

v0.1.0

Published

Lightweight SDK for analytics, events, logging, crashes, and offline support. Simple setup, minimal overhead.

Readme

AppAmbit React Native SDK

Track. Debug. Distribute. AppAmbit: track, debug, and distribute your apps from one dashboard.

Lightweight SDK for analytics, events, logging, crashes, and offline support. Simple setup, minimal overhead.

Full product docs live here: docs.appambit.com


Contents


Features

  • Session analytics with automatic lifecycle tracking
  • Event tracking with custom properties
  • Error logging for quick diagnostics
  • Crash capture with stack traces and threads
  • Offline support with batching, retry, and queue
  • Create multiple app profiles for staging and production
  • Small footprint

Requirements

  • Node >= 20
  • Yarn >=3.6.1
  • Android SDK with:
    • Android 5.0+
    • compileSdkVersion 34
    • targetSdkVersion 34
    • minSdkVersion 21
  • iOS SDK with:
    • Xcode 15+ (for iOS)
    • macOS 13+

Install

NPM

Add the package to your React Native project:

npm install appambit
# or specify version
npm install [email protected]

Quickstart

Initialize the SDK with your API key.

Javascript

export default function App() {
  useEffect(() => {
    start("<YOUR-APPKEY>");
  }, []);
}

Android App Requirements

Add these permissions to your AndroidManifest.xml:

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />

Usage

  • Session activity – automatically tracks user session starts, stops, and durations

  • Track events – send structured events with custom properties

      trackEvent("ButtonClicked", {"Count": "41"})
  • Logs: add structured log messages for debugging

      try {
          throw new Error();
      } catch (e) {
          logError(
          { stack: e.stack, 
          exception: e, 
          classFqn: e.constructor.name, 
          properties: {"user_id": "1"} },
          );
      }
  • Crash Reporting: uncaught crashes are automatically captured and uploaded on next launch


Release Distribution

Upload your APK, AAB, or IPA directly to your AppAmbit dashboard. Distribute release builds through:

  • Direct install links
  • Email distribution
  • Environment-specific channels

Privacy and Data

  • The SDK batches and transmits data efficiently
  • You control what is sent — avoid secrets or sensitive PII
  • Supports compliance with Google Play policies

For details, see the docs: docs.appambit.com


Troubleshooting

  • No data in dashboard → check API key, endpoint, and network access
  • React Native dependency not resolving → run npm install or yarn install and verify again
  • Crash not appearing → crashes are sent on next launch

Contributing

We welcome issues and pull requests.

  • Fork the repo
  • Create a feature branch
  • Add tests where applicable
  • Open a PR with a clear summary

Please follow React Native API design guidelines and document public APIs.


Versioning

Semantic Versioning (MAJOR.MINOR.PATCH) is used.

  • Breaking changes → major
  • New features → minor
  • Fixes → patch

Security

If you find a security issue, please contact us at [email protected] rather than opening a public issue.


License

Open source under the terms described in the LICENSE file.


Links