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

react-native-reading-card-br301-ntl

v1.2.3

Published

React Native library for Feitian BR301 card reader - NTL Edition

Readme

react-native-reading-card-br301-ntl

React Native library for BR301 card reader integration with React Native 0.81.0+ support - NTL Edition.

Modified from: repository
SDKs: version 3.5.64

🚀 Features

  • React Native 0.81.0 full compatibility
  • New Architecture (Fabric + TurboModules) support
  • TypeScript support with type definitions
  • iOS 13.4+ and Android API 24+ support
  • Auto-linking for easy installation
  • BR301 Card Reader integration
  • Both architectures supported (Old + New)

📦 Installation

Using npm

npm install react-native-reading-card-br301-ntl

Using yarn

yarn add react-native-reading-card-br301-ntl

iOS Setup

cd ios && pod install

🔧 Usage

import React from 'react';
import { View, Button, Alert } from 'react-native';
import { multiply } from 'react-native-reading-card-br301-ntl';
import CardReaderModule from 'react-native-reading-card-br301-ntl';

export default function App() {
  const testMultiply = async () => {
    try {
      const result = await multiply(6, 7);
      Alert.alert('Result', `6 × 7 = ${result}`);
    } catch (error) {
      Alert.alert('Error', error.message);
    }
  };

  return (
    <View style={{ flex: 1, justifyContent: 'center', padding: 20 }}>
      <Button title="Test Multiply" onPress={testMultiply} />
    </View>
  );
}

🆕 New Architecture Support

Enable New Architecture

iOS

export RCT_NEW_ARCH_ENABLED=1
cd ios && pod install && cd ..

Android

echo "newArchEnabled=true" >> android/gradle.properties

📋 Requirements

  • React Native: 0.81.0+
  • iOS: 13.4+
  • Android: API 24+ (Android 7.0)
  • Xcode: 15.0+
  • Node.js: 16+

Configuration IOS

[[info.plist]]
<key>NSBluetoothAlwaysUsageDescription</key>
<string>App need your approval to access to the bluetooth</string>
<key>UISupportedExternalAccessoryProtocols</key>
<array>
    <string>com.ftsafe.bR301</string>
    <string>com.ftsafe.iR301</string>
    <string>com.ftsafe.ir301</string>
    <string>com.ftsafe.br301</string>
</array>
<key>NSBluetoothPeripheralUsageDescription</key>
<string>App need your approval to access to the bluetooth</string>
<key>UIBackgroundModes</key>
<array>
    <string>external-accessory</string>
</array>

[[Link Binary With Libraries]]
-libiRockey301_3.5.64_Release
-CoreBluetooth.framework
-ExternalAccessory.framework

Made with create-react-native-library