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 🙏

© 2025 – Pkg Stats / Ryan Hefner

ryno

v0.1.2

Published

This library enables the use **React Server Components** in React Native apps. **ryno** implements its own server renderer and provides a simple API that is easily to integrate into existing projects.

Downloads

7

Readme

Introduction

This library enables the use React Server Components in React Native apps. ryno implements its own server renderer and provides a simple API that is easily to integrate into existing projects.

  • ServerComponent provides an easy API to send a request to the server renderer
  • All datatypes, even React elements and callback functions, are supported as props
  • simple render function allows rendering custom React Native component on the server
  • caching and reduplication build in

...and a lot more.


Install

Add ryno to your dependecies with this command:

with yarn

yarn add ryno

with npm

npm install --save ryno

Quick Start

This is a basic example on how to use the library.

On the client side:

import React from 'react';
import { ServerComponent } from 'ryno';
import { BlurView } from 'expo-blur';

export default function ServerBanner() {
  return (
    <ServerComponent
      // used for deduplicating server renders
      // when this compontent is used more than once
      path="1"
      // this implements the server communication
      // props are a serialised string that coints all rpops
      queryFn={async (path, props) => {
        const result = await fetch(uri + '/' + path, {
          method: 'POST',
          headers: { 'Content-Type': 'text/plain' },
          body: props,
        });

        return result.text();
      }}
      ErrorComponent={<Error />}
      LoaderComponent={<Loader />}
      // supports developer mode
      useLocal
      local={<Example />}
      // all other props get passed to the server
      uriBase={uri}
      // Function that are gonna be used as props on the server-side can be passed
      onPress={() => alert('Button pressed!')}
      // React elements can be passed to server components
      // you can even apply props to them from the server-side
      BlurView={BlurView}
    />
  );
}

On the server side:

import express from 'express';
import React from 'react';
import { render } from 'ryno';
import { Example } from 'Example';

const app = express();
app.use(express.text());
app.use(express.static('assets'));

const wait = (t: Number) => new Promise(r => setTimeout(r, t));

app.post('/1', async (req, res) => {
  const result = await render(props => <Example {...props} />, req.body);
  res.send(result);
});

Example component on the server

import React, { ElementType } from 'react';
import {
  Adapter,
  ImageBackground,
  StyleSheet,
  Text,
  TouchableOpacity,
  View,
} from 'ryno';

export function ExampleOne({
  uriBase,
  BlurView,
  onPress = () => {},
}: {
  uriBase: string,
  BlurView: ElementType<any>,
  onPress?: () => void,
}) {
  return (
    <ImageBackground
      key="wrapper"
      style={styles.hero}
      imageStyle={{
        borderRadius: 15,
      }}
      resizeMode="cover"
    >
      // The onPress prop was passed from the client // the event will trigger
      the function on the client
      <TouchableOpacity key="touchable" activeOpacity={0.8} onPress={onPress}>
        // Adapter is used to render components passed as props to the client //
        all props are passed to the component in the client
        <Adapter key="blur" component={BlurView} intensity={90}>
          <View key="blurContent">
            <Text key="headline">praesent plementum facilisis</Text>
          </View>
        </Adapter>
      </TouchableOpacity>
    </ImageBackground>
  );
}

// StyleSheets are supported to!
const styles = StyleSheet.create({
  hero: {
    aspectRatio: 1,
    justifyContent: 'space-between',
  },
});

Additional examples can be found inside the /example directory.

For more advanced uses of the library look inside the /benchmark directory.


License

The MIT License.