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

@rep-protocol/react

v0.1.7

Published

React adapter for the Runtime Environment Protocol (REP).

Downloads

587

Readme

@rep-protocol/react

React hooks for the Runtime Environment Protocol.

Provides useRep() and useRepSecure() hooks that read environment variables injected by the REP gateway. Both hooks automatically re-render when config changes via hot reload.

Install

npm install @rep-protocol/react @rep-protocol/sdk

Usage

import { useRep, useRepSecure } from '@rep-protocol/react';

function App() {
  // PUBLIC tier — synchronous, no loading state.
  const apiUrl = useRep('API_URL', 'http://localhost:3000');
  const flags = useRep('FEATURE_FLAGS', '').split(',');

  // SENSITIVE tier — async, renders null until resolved.
  const { value: analyticsKey, loading, error } = useRepSecure('ANALYTICS_KEY');

  if (loading) return <span>Loading…</span>;
  if (error) return <span>Config error: {error.message}</span>;

  return (
    <div>
      <p>API: {apiUrl}</p>
      <p>Analytics: {analyticsKey}</p>
    </div>
  );
}

API

useRep(key, defaultValue?)

Reads a PUBLIC tier variable. Synchronous — no loading state, no Suspense, no network call.

const value = useRep('API_URL');              // string | undefined
const value = useRep('API_URL', 'fallback'); // string (never undefined)
  • Returns the value from the injected REP payload immediately.
  • Returns defaultValue (or undefined) if the variable is not present.
  • Automatically re-renders when the variable changes via hot reload.
  • Unsubscribes from hot reload on unmount.

useRepSecure(key)

Reads a SENSITIVE tier variable. Async — fetches a session key on first call.

const { value, loading, error } = useRepSecure('ANALYTICS_KEY');
// value:   string | null  — null until resolved
// loading: boolean        — true while fetching
// error:   Error | null   — set if the session key fetch or decryption fails
  • Starts with { value: null, loading: true, error: null }.
  • Resolves to { value: '...', loading: false, error: null } on success.
  • The decrypted value is cached by the SDK for the page lifetime.
  • Re-fetches if the key prop changes.

Hot Reload

Both hooks subscribe to the REP gateway's SSE stream (if --hot-reload is enabled). When a variable changes, the component re-renders with the new value automatically.

If hot reload is not available, the hooks still work — they just won't update after initial render.

Requirements

  • React ≥ 16.8 (hooks support)
  • @rep-protocol/sdk as a peer dependency
  • REP gateway running and injecting the <script id="__rep__"> payload

Development Mode

Without the REP gateway, useRep() returns undefined. Use defaultValue for local development:

const apiUrl = useRep('API_URL', 'http://localhost:3000');

Or inject a mock payload in your index.html:

<script id="__rep__" type="application/json">
{"public":{"API_URL":"http://localhost:3000"},"_meta":{"version":"0.1.0","injected_at":"2026-01-01T00:00:00Z","integrity":"hmac-sha256:dev","ttl":0}}
</script>

Specification

Implements REP-RFC-0001 §5.5 — Framework Adapters.

License

Apache 2.0