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

@wekor/react-native-local-network-permission

v1.0.0

Published

Handles iOS local network permission requests.

Downloads

143

Readme

@wekor/react-native-local-network-permission

A React Native library for handling iOS Local Network permission, built on TurboModule architecture.

Installation

npm install @wekor/react-native-local-network-permission

Configure Info.plist

Add the following to your ios/<YourApp>/Info.plist:

<key>NSLocalNetworkUsageDescription</key>
<string>This app needs access to the local network to discover nearby devices.</string>

<key>NSBonjourServices</key>
<array>
    <string>_preflight_check._tcp</string>
</array>
  • NSLocalNetworkUsageDescription: The message shown in the permission dialog. Customize it for your app.
  • NSBonjourServices: Must include _preflight_check._tcp — the Bonjour service used internally by this library.

Expo Setup

This library uses React Native TurboModule architecture. To use it in an Expo project:

  1. Install the library.
  2. Run npx expo prebuild to generate native projects.
  3. Add the Info.plist keys via app.json:
{
  "expo": {
    "ios": {
      "infoPlist": {
        "NSLocalNetworkUsageDescription": "This app needs local network access to detect nearby devices.",
        "NSBonjourServices": ["_preflight_check._tcp"]
      }
    }
  }
}

Usage

import { requestPermission } from '@wekor/react-native-local-network-permission';

const granted = await requestPermission();
// true = granted, false = denied

API

requestPermission(): Promise<boolean>

Requests local network permission.

  • iOS 14+: Triggers the NWBrowser/NWListener detection. Shows the system dialog on first call; returns current status on subsequent calls.
  • Android / other platforms: Always returns true (local network access is unrestricted).

Returns true if granted, false if denied.

Why only one method? Apple provides no API to silently query local network permission. Any detection attempt may trigger the system dialog, so separate "get" and "request" methods would be misleading.

Platform Support

| Platform | Supported | Notes | |----------|-----------|-------| | iOS 14+ | Yes | Full support via NWBrowser/NWListener | | iOS < 14 | N/A | Always returns true (no restriction) | | Android | N/A | Always returns true |

Limitations

  • requestPermission() may show the system dialog on first call — this is an iOS limitation.
  • iOS shows the dialog only once. Users must go to Settings > Privacy & Security > Local Network to change it.
  • iOS 14+ only. Older versions return true.

License

MIT