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

vue-node-red-flow-viewer

v0.1.0

Published

Vue 3 component library for rendering Node-RED flows with Vue Flow

Downloads

305

Readme

vue-node-red-flow-viewer

Version License Downloads Types Dependencies

Vue 3 component library for rendering Node-RED flow JSON with Vue Flow.

📚 Documentation

This package is a Vue-native adaptation of the original node-red-flowviewer-js work by Gerrit Riessen, rebuilt around Vue single-file components and @vue-flow/core.

Install

npm install vue-node-red-flow-viewer

vue@^3.3.0 is a peer dependency. Vue Flow packages are installed as runtime dependencies.

Import the stylesheet once in your app:

import 'vue-node-red-flow-viewer/style.css'

Usage

<script setup lang="ts">
import { FlowViewer } from 'vue-node-red-flow-viewer'
import 'vue-node-red-flow-viewer/style.css'

const flowData = [
  { id: 'tab1', type: 'tab', label: 'Example' },
  { id: 'inject1', type: 'inject', z: 'tab1', x: 120, y: 80, wires: [['debug1']] },
  { id: 'debug1', type: 'debug', z: 'tab1', x: 320, y: 80, wires: [] },
]
</script>

<template>
  <div class="viewer">
    <FlowViewer
      :flow-data="flowData"
      :options="{ gridlines: true, images: true, labels: true, linklines: false }"
    />
  </div>
</template>

<style scoped>
.viewer {
  height: 480px;
}
</style>

The wrapper needs a height because the viewer fills its parent. Pass the full Node-RED export array so tabs, groups, wires, and subflows can render.

Exports

  • FlowViewer: Vue component for rendering a read-only flow tab or subflow.
  • transformFlow(flowdata, flowId, opts): converts Node-RED flow JSON into Vue Flow nodes and edges.
  • setImageContent(content): replaces the icon content map used for node images.

Component props

| Prop | Type | Default | Description | | ---------------- | ------------------- | ------------------ | ----------------------------------------------------------------------------------------------- | | flowData | NodeRedNode[] | Required | Node-RED flow export array. | | flowId | string \| null | null | Tab or subflow id to display. If omitted, the first tab or subflow is selected. | | options | FlowViewerOptions | See docs | Controls gridlines, icons, labels, dashed link lines, and the currently unused arrows option. | | autoFitView | boolean | true | Fits the viewport after initialization and content changes. | | fitViewOptions | FitViewParams | { padding: 0.1 } | Options passed to Vue Flow fitView. |

Events

  • pane-ready
  • nodes-initialized
  • tab-change
  • viewport-fit
  • copy
  • update:flowId

See the events docs for payload details.

Styling

The component ships CSS variables for theming:

.viewer {
  --nr-flow-bg: #f3f3f3;
  --nr-grid-color: #d4d4d4;
  --nr-wire-color: #999;
  --nr-wire-width: 3;
}

See the CSS variables docs for the full list.

Development

pnpm install
pnpm --filter vue-node-red-flow-viewer test
pnpm --filter vue-node-red-flow-viewer build
pnpm --filter vue-node-red-flow-viewer pack --dry-run

License

Apache-2.0. See LICENSE and NOTICE.