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

@expofp/react-native-efp-sdk

v0.8.2

Published

ExpoFP React Native SDK

Readme

@expofp/react-native-efp-sdk

A React Native Turbo Module for integrating ExpoFP (Exhibition Floor Plan) SDKs with React Native applications. Provides native iOS and Android support for displaying and interacting with interactive floor plans.

Features

  • 🏗️ React Native Turbo Module - Modern architecture using the new React Native bridge
  • 📱 iOS Support - Built on ExpoFP iOS SDK v5
  • 🤖 Android Support - Built on ExpoFP Android SDK v5
  • 🎯 Native Performance - Direct access to native map rendering
  • 📦 TypeScript - Full type safety with TypeScript support

Installation

npm install @expofp/react-native-efp-sdk
# or
yarn add @expofp/react-native-efp-sdk

Prerequisites

  • iOS: CocoaPods, Ruby >= 3.0, Bundler >= 2.7
  • Android: Android SDK, Gradle
  • React Native: >= 0.79.0

Quick Start

Import and use the ExpofpView component to display an interactive floor plan:

import { useRef } from 'react';
import { View } from 'react-native';
import { ExpofpView, type ExpofpViewMethods } from '@expofp/react-native-efp-sdk';

export function FloorPlanScreen() {
  const mapRef = useRef<ExpofpViewMethods>(null);

  return (
    <View style={{ flex: 1 }}>
      <ExpofpView
        ref={mapRef}
        expoKey="YOUR_EXPO_KEY"
        style={{ flex: 1 }}
        onBoothClick={(booth) => {
          console.log('Booth clicked:', booth);
        }}
        onFloorActivated={(floor) => {
          console.log('Floor activated:', floor);
        }}
      />
    </View>
  );
}

Using View Methods

Access imperative methods through the component ref:

// Zoom controls
mapRef.current?.zoomIn();
mapRef.current?.zoomOut();

// Select booth or exhibitor
mapRef.current?.selectBooth('booth_id');
mapRef.current?.selectExhibitor('exhibitor_name');

// Highlight multiple booths
mapRef.current?.highlightBooths(['booth_1', 'booth_2']);

// Fit all elements in view
mapRef.current?.fitBounds();

Documentation

Development

Setup

# Install dependencies
yarn

# Build the library
yarn prepare

# Type check
yarn typecheck

# Lint
yarn lint

# Test
yarn test

Building Example App

# Android
yarn example build:android

# iOS
yarn example build:ios

Running Example App

# Android
yarn example android

# iOS
yarn example ios

# Start Metro bundler
yarn example start

Requirements

| Platform | Version | |----------|---------| | React Native | >= 0.79.0 | | iOS | >= 12.0 | | Android | >= API 21 |

License

MIT

Support