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-nitro-geolocation/rozenite-plugin

v1.0.0

Published

react-native-nitro-geolocation devtools plugin with rozenite

Downloads

180

Readme

@react-native-nitro-geolocation/rozenite-plugin

Rozenite DevTools Plugin for react-native-nitro-geolocation. Mock geolocation data in development with an interactive map interface.

⚠️ Prerequisites: This plugin requires Rozenite DevTools to be set up in your project. Follow the Rozenite installation guide to configure DevTools before using this plugin.

ℹ️ API Compatibility: This DevTools plugin only works with the Modern API (react-native-nitro-geolocation). It does not support the Legacy API (react-native-nitro-geolocation/compat).

Demo

DevTools Plugin Demo

Features

  • 🗺️ Interactive map-based position control
  • 📍 Click on map to set location
  • ⌨️ Arrow key navigation for precise adjustments
  • 🏙️ 20 pre-configured city locations
  • ✏️ Manual latitude/longitude input
  • 📊 Real-time heading, speed, and accuracy calculation
  • 🌓 Dark mode support

Installation

npm install @react-native-nitro-geolocation/rozenite-plugin
# or
yarn add @react-native-nitro-geolocation/rozenite-plugin

Usage

Add the devtools hook to your app:

import { useGeolocationDevTools } from '@react-native-nitro-geolocation/rozenite-plugin';

function App() {
  useGeolocationDevTools();

  return <YourApp />;
}

With initial position

Using city presets

import { useGeolocationDevTools, createPosition } from '@react-native-nitro-geolocation/rozenite-plugin';

function App() {
  useGeolocationDevTools({
    initialPosition: createPosition('Dubai, UAE')
  });

  return <YourApp />;
}

Using custom coordinates

import { useGeolocationDevTools, type Position } from '@react-native-nitro-geolocation/rozenite-plugin';

const customPosition: Position = {
  coords: {
    latitude: 37.7749,
    longitude: -122.4194,
    altitude: 0,
    accuracy: 100,
    altitudeAccuracy: 100,
    heading: 0,
    speed: 0,
  },
  timestamp: Date.now()
};

function App() {
  useGeolocationDevTools({
    initialPosition: customPosition
  });

  return <YourApp />;
}

Available city presets

Seoul, Tokyo, Beijing, Singapore, Mumbai, London, Paris, Berlin, Moscow, Istanbul, New York, Los Angeles, São Paulo, Mexico City, Toronto, Sydney, Dubai, Cairo, Johannesburg, Buenos Aires

Opening DevTools

  1. Start your React Native app with Metro
  2. Press j in the Metro terminal
  3. Enable the Geolocation plugin in DevTools
  4. Start mocking locations!

Controls

  • Click map: Set location instantly
  • Arrow keys: Move position precisely
  • Input fields: Enter exact coordinates
  • Dropdown: Select city preset

License

MIT