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-deco

v1.0.0

Published

Declarative JSX glorification

Readme

React Deco

React Deco Give back to JSX what belongs to JSX.

Overview

React Deco is a library that aims to make complex React views more declarative, idiomatic, easy to read, and easy to write, and as a consequence, more maintainable.

This library takes advantage of the Render-Props pattern (effectively used by React Router and Downshift) to make it possible to write conditionals and loops in a more declarative way while reducing visual clutter.

Lets write a simple table of products with two columns Name and In Stock. If In Stock is 0 then a message Out of Stock should be displayed. Currently we should write something like the following:

function ProductTable({products}) {
  return (
    <table>
      <thead>
        <tr>
          <th>Name</th>
          <th>In Stock</th>
        </tr>
      </thead>
      {renderTableBody(products)}
    </table>
  )
}

function renderTableBody(products) {
  return (
    <tbody>
    {products.map((product) =>
      <tr key={product.id}>
        <td>{product.name}</td>
        {(product.inStock > 0)
          ? <td>{product.inStock}</td>
          : <td>Out of Stock</td>
        }
      </tr>
    )}
    </tbody>
  )
}

This library will turn the above code into:

function ProductTable({products}) {
  return (
    <table>
      <thead>
        <tr>
          <th>Name</th>
          <th>In Stock</th>
        </tr>
      </thead>
      <tbody>
      <Map target={products} with={(product) =>
        <tr key={product.id}>
          <td>{product.name}</td>
          <If test={product.inStock > 0}
            then={<td>{product.inStock}</td>}
            else={<td>Out of Stock</td>}
          />
        </tr>
      }/>
      </tbody>
    </table>
  )
}

Installation

// with yarn
yarn add react-deco

// with npm
npm install react-deco

Usage

// ES2015+ and TS
import {If, Map, Memo, TryCatch} from 'react-deco'

// CommonJS
var ReactDeco = require('react-deco')
var If = ReactDeco.If
var Map = ReactDeco.Map
var Memo = ReactDeco.Memo
var TryCatch = ReactDeco.TryCatch

Components

React-Deco exports some primitives which hold reusable logic, to help developers to write presentational logic in JSX.

If

Conditionally render components based on the truthy-ness of evaluating the test prop. Render then if test evaluates to truthy, render else otherwise.

<If
  test={a > b}
  then={'a is greater then b'}
  else={'a is not greater than b'}
/>

Passing functions in then and else makes the rendering process more efficient because only one of both branches is evaluated depending on the truthy-ness of test. See Short Circuit Evaluation

<If
  test={a > b}
  then={() => 'a is greater then b'}
  else={() => 'a is not greater than b'}
/>

Switch/When

Render the first When child whose test prop evaluates to true.

<Switch>
  <When test={a > 1} render={() => <div> Foo </div>} />
  <When test={true} render={() => <div> Default </div>} />
</Switch>

Map

Render the result of dispatching to the map method of target passing the with function as the first argument.

<Map target={[1, 2, 3]} with={(item) =>
  <div key={item}>{item}</div>
} />

Await

Render components based on the state of a promise. Renders then prop when the promise is resolved. Renders catch prop when the promise is rejected. Renders placeholder while the promise is not resolved nor rejected.

const usersPromise = fetch('users')
<Await promise={usersPromise} then={users =>
  ...
} />

While a new promise is pending, you can choose to show the data from the last successful promise by using the showStaleData prop.

<Await
  promise={newUsersPromise}
  then={users => ...}
  showStaleData={true}
/>

Await components accept the following props:

  • promise
  • then
  • catch
  • placeholder
  • finally: A render prop that is always rendered when the promise settles.
  • showStaleData: A boolean that, if true, will show the stale data from the previous promise while the new one is loading. Defaults to false.

Memo

Memoizes a rendered component, preventing it from re-rendering if its dependencies have not changed. This is useful for optimizing performance.

<Memo deps={[user.id]} render={() =>
  <div>{user.name}</div>
} />

The render prop will only be re-evaluated if the deps array changes.

Memo components accept the following props:

  • deps: An array of dependencies. The component will re-render only if the values in this array change.
  • render: A function that returns a React element to be rendered.

TryCatch

A declarative error boundary to catch errors in a component subtree.

<TryCatch
  try={() => <MyComponentThatMightFail />}
  catch={(error, errorInfo) => <p>Failed to render: {error.toString()}</p>}
  onError={(error, errorInfo) => console.error('Caught an error:', error)}
/>

TryCatch components accept the following props:

  • try: A function that returns the content to be rendered.
  • catch: A function that is called when an error is caught. It receives the error and errorInfo as arguments and should return the fallback content to be rendered.
  • onError: An optional function that is called when an error is caught. It receives the error and errorInfo as arguments. This is useful for logging errors or performing other side effects.

Published under MIT License

(c) Yosbel Marin 2025