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

@ruvyxa/react

v1.0.27

Published

React integration for Ruvyxa apps, built for SSR-first pages and browser hydration without framework noise.

Readme

@ruvyxa/react

React integration package for Ruvyxa apps.

Install

npm install @ruvyxa/react react react-dom

React and ReactDOM are peer dependencies. Most app users do not import this package directly; the main ruvyxa runtime uses React SSR and route-level client bundling internally.

Optimized images

import { Image } from '@ruvyxa/react'

;<Image src="/hero.png" alt="Product overview" width={1600} height={900} priority />

Image rewrites local PNG/JPEG URLs to Ruvyxa's build-time WebP output, requires intrinsic dimensions unless fill is used, and applies sensible loading defaults. With image.onDemand: true, add dynamic to request bounded same-origin runtime resizing through /__ruvyxa/image; remote URLs are deliberately unchanged to prevent the endpoint becoming an open proxy. Use Picture with sources for browser-native art direction, or a per-image loader for an external CDN.

View transitions

<Link href="/products" viewTransition>
  Products
</Link>

Link and router.push() support viewTransition: true. Ruvyxa uses the stable browser View Transitions API when present, respects prefers-reduced-motion, and falls back to ordinary client navigation. It does not require React Canary's experimental <ViewTransition> component.

Ruvyxa targets React 19 and exercises the stable useActionState and useFormStatus APIs in its compatibility suite.

SEO, GEO, and AEO primitives

import { Answer, Seo } from '@ruvyxa/react'

export default function Guide() {
  return (
    <>
      <Seo
        title="Rendering guide"
        description="How Ruvyxa renders pages."
        canonical="https://example.com/guides/rendering"
        image="https://example.com/rendering.png"
        type="article"
        article={{
          type: 'BlogPosting',
          publishedAt: '2026-07-22',
          updatedAt: '2026-07-23T10:30:00+07:00',
          authors: [{ name: 'Ada', url: 'https://example.com/authors/ada' }],
          tags: ['SSR', 'React'],
        }}
        breadcrumbs={[
          { name: 'Home', url: 'https://example.com/' },
          { name: 'Guides', url: 'https://example.com/guides' },
          { name: 'Rendering', url: 'https://example.com/guides/rendering' },
        ]}
      />
      <Answer
        question="Does Ruvyxa render on the server?"
        answer="Yes. Pages render on the server by default."
        sources={[{ name: 'Rendering guide', url: '/docs/rendering' }]}
      />
    </>
  )
}

Seo emits React 19 document metadata for canonical URLs, robots, Open Graph, Twitter Cards, and optional escaped JSON-LD. Its typed article and breadcrumbs inputs derive Article and BreadcrumbList JSON-LD from explicit page facts. Answer renders the answer and citations visibly with Schema.org Question/Answer microdata; it does not claim FAQ or Q&A rich-result eligibility.

When to Use Directly

Use this package for React-specific integration work, framework experiments, or future adapter/runtime composition. For ordinary apps, import public APIs from ruvyxa/config and ruvyxa/server.