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

order-flow-tape-plugin

v0.1.0

Published

Orderly SDK plugin

Readme

order-flow-tape-plugin

An Orderly SDK v3 plugin that renders a live order-flow tape — a horizontal ribbon of recent trades with size-weighted pills — directly above the desktop TradingView chart.

preview

What it does

  • Subscribes to useMarketTradeStream from @orderly.network/hooks for the active symbol.
  • Renders each tick as a colored pill (green = buy aggressor, red = sell aggressor); pill brightness scales with notional size against a rolling window so big prints visually pop.
  • Auto-scrolls — newest fills slide in from the right.
  • Pure client-side, no extra backend or REST calls.
  • Mounts via the TradingView.Desktop interceptor — the chart is preserved untouched below the tape.

Install

pnpm add order-flow-tape-plugin
# or
npm install order-flow-tape-plugin

Register

import { OrderlyAppProvider } from '@orderly.network/react-app';
import { registerOrderFlowTapePlugin } from 'order-flow-tape-plugin';

<OrderlyAppProvider
  plugins={[
    registerOrderFlowTapePlugin({ maxTicks: 30 }),
  ]}
  // …
/>

If your host doesn't auto-import the plugin's stylesheet:

import 'order-flow-tape-plugin/dist/styles.css';

Options

| Option | Type | Default | Description | |------------------|----------|---------|-------------| | className | string | | Extra CSS class for the outer container. | | maxTicks | number | 30 | Maximum number of pills kept on the strip — older ticks scroll off. | | notionalWindow | number | 50 | Rolling window size for normalizing pill brightness against recent notional. |

Peer dependencies

Provided by the host app:

  • @orderly.network/plugin-core >= 3.0.0-beta.1
  • @orderly.network/hooks >= 3.0.0-beta.1
  • @orderly.network/trading >= 3.0.0-beta.1
  • @orderly.network/ui >= 3.0.0-beta.1
  • @orderly.network/i18n >= 3.0.0-beta.1
  • @orderly.network/types >= 3.0.0-beta.1
  • @orderly.network/utils >= 3.0.0-beta.1
  • react >= 18, react-dom >= 18

Build

pnpm install
pnpm build

Produces dist/index.{js,mjs,d.ts} + dist/styles.css.

License

MIT