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

pptb-pipeline-visualiser

v1.1.2

Published

A tool to help visualise pipelines across environments.

Readme

Pipeline Visualiser

A Power Platform ToolBox tool that visualises deployment pipelines across environments.

What's New

v1.1.0

  • 🌙 Dark mode — toggle between light and dark themes using the 🌙/☀️ button in the header; preference is saved across sessions
  • 💬 Smarter error handling — if the Deployment Pipeline Configuration app is not installed, a helpful setup message is shown instead of a raw API error
  • 📄 MIT licence — updated with correct year and author name

v1.0.1

  • Added npm-shrinkwrap.json for Power Platform ToolBox submission requirements

v1.0.0

  • Initial release

Features

  • Queries deployment pipeline data directly from Dataverse
  • Displays each pipeline as a visual flow: Dev Environment → Stage 1 → Stage 2 → ...
  • Colour-coded nodes — blue for Development, purple for Target environments
  • Shared environment detection — environments appearing across multiple pipelines receive a unique accent colour so intersections are immediately visible
  • Hover tooltips on each environment node and deployment dot showing contextual details
  • Automatically refreshes when the active connection changes

Deployment History

  • Shows the last deployment against each pipeline — artifact name, solution version, status and date
  • Displays the last 5 deployments as coloured indicator dots:
    • 🟢 Green — Succeeded
    • 🔴 Red — Failed
    • 🟡 Yellow — Cancelled
    • ⚫ Grey — Any other status
  • Hover a dot to see full details: status, artifact name, and date
  • Orphaned stage runs (not linked to a deployment stage) are automatically excluded

Export

  • Export PNG button captures a snapshot of all pipeline cards and saves it as pipelines-YYYY-MM-DD.png — useful for storing in GitHub, Confluence, ADO, or other knowledge hubs

Legend

  • Collapsible legend at the top explains the dot colour key and highlights any shared environments
  • Can be collapsed to maximise usable screen area

Structure

src/
├── components/
│   ├── PipelineFlow.tsx        # Renders a single pipeline as a horizontal flow
│   └── PipelineVisualiser.tsx  # Top-level component with loading/error states
├── hooks/
│   ├── usePipelineData.ts      # Dataverse queries and data processing
│   └── useToolboxAPI.ts        # Connection and event hooks
├── types/
│   └── pipeline.ts             # TypeScript interfaces
├── App.tsx
├── index.css
└── main.tsx

Dataverse Tables

| Table | Purpose | |---|---| | deploymentpipeline | Parent pipeline record | | deploymentstage | Links environments to a pipeline; self-referential for ordering | | deploymentenvironment | Environment records (name, type, ID) | | deploymentpipeline_deploymentenvironment | N:N intersect — links pipelines to their dev environment | | deploymentstagerun | Deployment Stage Run records — status, artifact, version, start/end times |

License

MIT