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

sichqon

v0.1.1

Published

Create tunnel with your react application

Readme

sichqon is a lightweight React library that provides a tunneling mechanism for rendering React components at different locations in your application's component tree. This library was inspired by tunnel-rat, adopting a similar approach to component tunneling while maintaining its own lightweight implementation.

Installation

npm install sichqon
# or
yarn add sichqon
# or
pnpm add sichqon

Features

  • 🪶 Lightweight and zero dependencies
  • 🌳 Type-safe with TypeScript support
  • ⚡ SSR compatible with isomorphic layout effects
  • 🎯 Simple API with just two components: In and Out

Usage

First, create a tunnel using the createTunnel function:

import { createTunnel } from 'sichqon';

const MyTunnel = createTunnel();

Then use the tunnel's In and Out components to teleport content:

function App() {
  return (
    <div>
      <h1>My App</h1>
      {/* Content sent through the tunnel */}
      <MyTunnel.In>
        <button>Teleported Button</button>
      </MyTunnel.In>
      
      {/* Other components */}
      <main>
        <p>Main content</p>
      </main>
      
      {/* Where the tunneled content appears */}
      <div className="portal-target">
        <MyTunnel.Out />
      </div>
    </div>
  );
}

How It Works

Sichqon uses React's useSyncExternalStore hook to manage state synchronization between the In and Out components. The tunneling mechanism allows you to:

  1. Send content from any part of your component tree using <Tunnel.In>
  2. Render that content elsewhere using <Tunnel.Out>
  3. Multiple In components can send content to the same Out component
  4. Content is rendered in the order it was sent

API Reference

createTunnel()

Creates a new tunnel with In and Out components.

const Tunnel = createTunnel();

<Tunnel.In>

The component that accepts children to be tunneled.

Props:

  • children: ReactNode - The content to be tunneled

<Tunnel.Out>

The component that renders the tunneled content.

No props required.

Server-Side Rendering

Sichqon is built with SSR in mind and uses an isomorphic layout effect to ensure consistent behavior between client and server environments.

TypeScript Support

Sichqon is written in TypeScript and provides full type definitions out of the box.

Examples

Modal Portal

const ModalTunnel = createTunnel();

function Modal({ children }) {
  return <ModalTunnel.In>{children}</ModalTunnel.In>;
}

function App() {
  return (
    <div>
      <Modal>
        <div className="modal">Modal Content</div>
      </Modal>
      
      {/* Modal container at the root level */}
      <div id="modal-root">
        <ModalTunnel.Out />
      </div>
    </div>
  );
}

Toast Notifications

const ToastTunnel = createTunnel();

function Toast({ message }) {
  return (
    <ToastTunnel.In>
      <div className="toast">{message}</div>
    </ToastTunnel.In>
  );
}

function App() {
  return (
    <div>
      <Toast message="Operation successful!" />
      
      {/* Toast container */}
      <div className="toast-container">
        <ToastTunnel.Out />
      </div>
    </div>
  );
}

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.