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

@salve-software/react-native-cicerone

v0.2.1

Published

Guided onboarding tours for React Native. It handles the spotlight, you style the card.

Readme

Cicerone dims the screen, cuts a hole around one element, and shows a card next to it. You give it a list of steps and mark the elements. It handles the rest.

The existing tour libraries were written before the New Architecture and most still use findNodeHandle, which is deprecated. This one measures with measureInWindow, ships no native code of its own, and lets you render the card so the tour looks like your app instead of like a library.

import { Cicerone, type ICiceroneStep } from '@salve-software/react-native-cicerone';

const STEPS: ICiceroneStep[] = [
  {
    id: 'viewfinder',
    title: 'Scan in bulk',
    text: 'Run several products in a row without stopping.',
    padding: 26,
    radius: 28,
  },
  {
    id: 'scan-button',
    title: 'Always at hand',
    text: 'This button opens the scanner from anywhere.',
    radius: 'circle',
  },
];

export const Scanner = () => (
  <Cicerone.Provider steps={STEPS}>
    <Cicerone.Target id="viewfinder">
      <Viewfinder />
    </Cicerone.Target>

    <Cicerone.Target id="scan-button">
      <ScanButton />
    </Cicerone.Target>
  </Cicerone.Provider>
);

Features

  • No native code. Pure TypeScript. Nothing of ours to link or rebuild.
  • New Architecture ready. Measures with measureInWindow, never findNodeHandle.
  • Handles scrolling. A target below the fold gets scrolled into view, then measured once the scroll settles.
  • Use our card or yours. The built in one works out of the box, and renderCard swaps it out without losing the spotlight.
  • Placement follows the target. The card takes whichever side has room, and the arrow slides when clamping to the screen edge pulls them apart.
  • Works when nested. The overlay uses its own box, so a provider inside a sheet or under a header still lands on target.
  • You own "already seen". The library never touches storage; gate it with autoStart and persist however you like.

Installation

Requirements

| Component | Requirement | | ------------------------- | ------------------------------------------------------- | | React Native | 0.76.0 or higher, with the New Architecture enabled | | react-native-reanimated | 3.0.0 or higher, required peer dependency | | react-native-svg | 15.0.0 or higher, required peer dependency |

yarn add @salve-software/react-native-cicerone react-native-reanimated react-native-svg

Both peers have native code, so run pod install after. On Expo use npx expo install so the versions match your SDK. Reanimated is tied to the runtime it was compiled against, and a mismatch crashes on startup rather than failing the build.

Usage

Full docs, API reference and theming guide live at salve-software.github.io/react-native-cicerone

Contributing

Contributions are welcome. See CONTRIBUTING.md for setup, branch and commit conventions, and how PRs work here.

License

This project is licensed under the MIT License, see LICENSE for details.