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-skia-skeleton

v0.8.1

Published

A skia skeleton for react native apps.

Readme

react-native-skia-skeleton

GitHub Actions Workflow Status GitHub package.json version

react-native-skia-skeleton is a high-performance, fully customizable, and smoothly animated skeleton loader built with React Native Skia and React Native Reanimated. It enables you to display elegant and visually appealing placeholders, enhancing the user experience while your mobile or web app content loads.

Designed to help you build visually engaging apps, it supports shimmer effects, RTL layout, customizable shapes and seamless animation transitions.

Main features of the library include:

  • High performances thanks to React Native Skia and React Native Reanimated
  • Full support for Android, iOS, and Web
  • RTL compatible and easily themeable
  • Zero dependencies outside of Skia and Reanimated

Installation

You can install the library using npm or yarn. Make sure you have the required dependencies installed in your project (React Native Reanimated and React Native Skia).

npm install react-native-skia-skeleton
yarn add react-native-skia-skeleton

Usage

You can check the doc available at https://react-native-skia-skeleton.expo.app/, where you can find examples and a full description of how the component works. Here below is a simple example of how to use the component:

import { Skeleton } from 'react-native-skia-skeleton';

export default function App() {
  return (
      <Skeleton
        loading={true}
        bones={[{ style: { width: 300, height: 100 } }]}
      />
  );
}

These are the properties exposed on the Skeleton component:

| Prop | Type | Optional | Description | |----------------|------------------|----------|------------------------------------------------------------------------------------------------------------------------------------------------| | loading | boolean | No | Whether the skeleton should be visible | | bones | BonesLayout[] | Yes | List of bones to render as placeholders. If this property is not passed, the Skeleton will try to render bones based on the layout of the children. Be aware that this will work only if all the children have an explicit width and height defined in the style property. | | containerStyle | ViewStyle | Yes | Style applied to the container View. This style is applied to both the container of the bones and the container of the real components (your components). | | colors | BoneColors | Yes | Custom shimmer colors. It is an object with two properties: background and shimmer. | | animation | BoneAnimation | Yes | Animation type for the shimmer effect. It is an object with three properties: duration, direction and reverse. | | children | React.ReactNode | Yes | Content to render once loading is false |

Below, you can find a video example of the component in action.

Video documentation

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.