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

@sinovuyo97/react-native-snowcoach

v5.6.87

Published

A simple and elegant snowcoach library for React Native

Readme

react-native-coachmark

A simple and elegant coachmark library for React Native that creates spotlight tutorials and walkthroughs.

🚀 What's New

Version 5.6.87 (03/04/2025)

  • Improved Tooltip Positioning: The tooltip now dynamically adjusts its position based on available screen space to ensure better visibility.
  • Ref-Based Measurement: Replaced layout measurement methods with React refs, removing dependencies on UIManager.measure.
  • Enhanced Highlighting: The highlighted child element remains fully visible without dimming, ensuring clarity in walkthroughs.

Version 5.6.84 (03/04/2025)

  • Fixed some typos
  • Now it displays and positions itself according to the available space.

Version 5.6.78 (03/04/2025)

  • Added Close Button: Replaced the TouchableWithoutFeedback with a close button in the coachmark component for better user experience.
  • Improved Documentation: Updated the README to include a "What's New" section for easier tracking of changes.

Version 2.0.7 (02/26/2025 - 04:00 PM)

  • Improved Error Handling: Enhanced the coachmark component to prevent NaN values for positioning properties.
  • Added validation checks to ensure that top and left values are not negative, defaulting to 0 if they are.
  • Consistent Layout Handling: Ensured that all layout values are validated before being used in styles, providing a more robust user experience.
  • No Changes to Usage: The usage of the coachmark component remains the same, allowing for seamless integration into existing projects.

📦 Installation

npm install @sinovuyo97/react-native-coachmark

or

yarn add @sinovuyo97/react-native-coachmark

🎬 Usage

import { Coachmark } from "@sinovuyo97/react-native-coachmark";

const App = () => {
  const [isVisible, setIsVisible] = React.useState(true);

  return (
    <Coachmark
      visible={isVisible}
      onHide={() => setIsVisible(false)}
      snowcoachText="This is a tutorial message."
    >
      <Button title="Show Coachmark" onPress={() => setIsVisible(true)} />
    </Coachmark>
  );
};

🛠 Props

| Prop | Type | Default | Description | |---------------|----------|---------|--------------------------------------------------| | snowcoachText | string | - | Text to display in the tooltip | | visible | boolean | false | Controls the visibility of the coachmark | | onHide | () => void | - | Callback when coachmark is dismissed | | children | ReactElement | - | The element to highlight with the coachmark |

❗ No Customization

Coachmark follows a strict, pre-defined UI design for consistency. It cannot be customized or modified.

📜 License

MIT License