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

@faisalbz/tester-sdk

v1.1.0

Published

Tester platform SDK for Expo / React Native — pure JS, works in Expo Go.

Readme

@faisalbz/tester-sdk

مكتبة TesterSDK لـ Expo / React Native — JavaScript خالصة، تعمل في Expo Go. الربط يلتقط الرمز تلقائياً من رابط الدعوة الذي يُفتح به التطبيق، ويحفظه على الجهاز بلا نافذة إدخال. والمرات التالية يجده محفوظاً فلا يعيد شيئاً.

التثبيت (في مشروع المطوّر)

npm install @faisalbz/tester-sdk
npx expo install expo-secure-store expo-device expo-application expo-linking

الإعداد

1) سجّل مخطط التطبيق (scheme) في app.json

{ "expo": { "scheme": "myapp" } }

2) هيّئ المكتبة في المكوّن الجذري — هذا كل ما يكتبه المطوّر:

import { useEffect } from 'react';
import * as TesterSdk from '@faisalbz/tester-sdk';

export default function App() {
  useEffect(() => {
    TesterSdk.init({
      appKey: 'pk_live_...',
      endpoint: 'https://api.yourplatform.com',
    });
  }, []);

  // ... بقية التطبيق
}

بعد هذا: حين يفتح المختبِر رابط الدعوة (myapp://bind?token=...)، يلتقط الـ SDK الرمز، يربط، ويحفظه — تلقائياً وبلا أي شاشة.

كيف يصل الرمز

المنصة ترسل للمختبِر رابطاً بمخطط تطبيق المطوّر:

myapp://bind?token=<BIND_TOKEN>

المختبِر يفتحه → يُفتح التطبيق → يُربط تلقائياً.

الحدّ الصادق

الربط "من تثبيت Google Play مباشرة بلا فتح رابط" يتطلب Install Referrer، وهو كود أصلي لا يتوفّر في JavaScript. النسخة السهلة تربط حين يُفتح التطبيق عبر رابط الدعوة (نقرة واحدة من المختبِر). للربط التلقائي الكامل من التثبيت، استخدم النسخة الأصلية (Kotlin AAR) مع Install Referrer.

الواجهة

  • init({ appKey, endpoint, autoBind? }) — تهيئة + رصد جلسات + التقاط تلقائي للرمز.
  • bind(token) — ربط يدوي (احتياطي).
  • bindFromUrl(url) — استخراج الرمز من رابط ثم الربط.
  • isBound() — هل النسخة مربوطة (الرمز محفوظ).

النشر (لك)

npm login
npm publish

ملاحظات

  • التوقيع HMAC مطابق لخادم Laravel بالبايت.
  • autoBind افتراضي true؛ مرّر false لتعطيله والربط يدوياً فقط.