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 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-multiple

v0.2.3

Published

Package for attaching React components to early made HTML elements

Downloads

22

Readme

react-multiple

React-multiple is a JavaScript library for make multiple react root.

Most React projects start from an empty HTML. In such cases, the entire DOMs of the page are under the influence of a react root, making development straightforward. However, applying React to a project built with an already completed HTML like JSP or Thymeleaf has many differences from a typical React project.

For instance, consider a situation where you're applying CSR with React to a project that has SSR set up with Thymeleaf. You would need to set up multiple react roots through several createRoot. Transferring data between these multiple react roots is not common, and ensuring consistent rendering can be challenging.

The react-multiple library was created for such situations. Inspired by data manipulation in zustand, it allows for easy data transfer between multiple react roots and ensures consistent rendering with ease.

Usage

For instance, imagine you need to create a counter project. But think about a situation where you have to add this counter project to an already completed project with a button DOM and display DOM.

First, find the DOM where you want to attach the react root(component). Second, use the makeRoot function to render the desired react component to the DOM. Third, declare data shared across multiple react roots with observeData. Lastly, make the render function, which is the return of makeRoot, observable to the data!

Under example show how this example works.

<body>
  <div data-react="CountButton"></div>
  <div data-react="CountDisplay"></div>
  <script type="module" src="/src/observer.tsx"></script>
</body>
// observer.tsx
import makeRoot, { observeData } from "react-multiple";
import ComponentObj from "./components/ComponentObj";

type CounterState = {
  count: number;
  increment: () => void;
};

const observedNumber = observeData<CounterState>((set) => ({
  count: 0,
  increment: () => set((state) => ({ count: state.count + 1 })),
}));

const reactButtonRoot = document.querySelector(
  "div[data-react=CountButton]"
) as HTMLDivElement;
const reactDisplayRoot = document.querySelector(
  "*[data-react=CountDisplay]"
) as HTMLDivElement;

// Render button only once
makeRoot({
  root: reactButtonRoot,
  Component: ComponentObj.CountButton,
  props: {
    onClick: () => {
      observedNumber.getState().increment();
    },
  },
});

const displayRender = makeRoot({
  root: reactDisplayRoot,
  Component: ComponentObj.CountDisplay,
  props: { count: observedNumber.getState().count },
});

observedNumber.setObserver(() => {
  displayRender({ count: observedNumber.getState().count });
});

Of course, you could ignore the existing layout and start over with React, but this would result in highly inefficient network traffic and workload. In such cases, using react-multiple allows you to proceed as follows.

If the project is vast and has a large layout processed with SSR, react-multiple is even more efficient.