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

@buoy-gg/redux

v7.0.17

Published

Redux DevTools inside your React Native app — action log, state diffs & time travel with zero store changes. Part of Buoy devtools.

Readme

@buoy-gg/redux

npm version npm downloads

Redux DevTools on the device — action log, state diffs, and time travel with zero store changes.

Part of Buoy — devtools that live inside your React Native app. Install it and it auto-appears in the floating menu from @buoy-gg/core.

Install

npm install @buoy-gg/core @buoy-gg/redux

Quick start

Zero config. Your existing store works as-is — no middleware, no wrapper. Buoy hooks the store at creation via the official Redux DevTools integration point (which Redux Toolkit enables by default), so actions are captured from your app's very first dispatch — including everything dispatched inside thunks and RTK Query.

import { configureStore } from '@reduxjs/toolkit';
import { Provider } from 'react-redux';
import { FloatingDevTools } from '@buoy-gg/core';

const store = configureStore({ reducer: rootReducer }); // unchanged

export default function App() {
  return (
    <Provider store={store}>
      <YourApp />
      <FloatingDevTools />
    </Provider>
  );
}

How capture works (and how to guarantee full capture)

Buoy binds to your store the earliest way available, in this order:

  1. Store-creation hook (default, full capture) — importing @buoy-gg/redux claims the Redux DevTools global that RTK checks by default. If the package loads before your store module, Buoy is inside the store from creation: every action (thunk-internal, RTK Query) is captured and time travel is real. To guarantee this ordering, make it the first import of your app entry:

    // index.js — first line
    import '@buoy-gg/redux';
  2. Middleware (explicit full capture) — one line if you prefer being explicit:

    middleware: (getDefault) => getDefault().concat(buoyReduxMiddleware),
  3. Startup fallback — if your store was created before Buoy loaded, FloatingDevTools binds it automatically at app mount. Top-level dispatches are captured from startup; actions dispatched inside thunks/middleware aren't visible to this mode (the tool tells you when it's in it).

Optional: full time travel

Time travel works out of the box on path 1. On the middleware path, wrap your reducer:

import { withBuoyDevTools } from '@buoy-gg/redux';

const store = configureStore({
  reducer: withBuoyDevTools(rootReducer),
});

What you get

  • Every action, captured — type, payload, timestamp, and a diff summary (+added -removed ~modified) per dispatch
  • Frame-budget warnings — actions taking longer than 16ms are flagged so slow reducers can't hide
  • RTK async thunk linking — pending → fulfilled/rejected automatically connected by Request ID, with a visual timeline and per-request durations
  • Time travel — jump to the state after any action, or replay an action to re-test your reducers
  • Three-tab detail view — full action payload, full state tree, and a side-by-side diff (tree or split view)
  • Search & filter — find actions by type, or show only actions that actually changed state
  • Export & copy — dump action history as JSON for bug reports or test fixtures
  • Recording toggle — pause capture when you need to focus, resume when ready

Desktop & AI

The same live session streams to Buoy Desktop (free, macOS/Windows/Linux) and to Claude Code or Cursor via the Buoy MCP server.

Free vs Pro

Every tool is free. Pro unlocks production builds, the MCP server, and unlimited capture. Every weekend, Pro features unlock free for everyone.


📚 Full docs · All Buoy tools

Proprietary software. © Buoy LLC. Terms