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

@flaier/core

v0.2.12

Published

Vue components and registry helpers for rendering Flaier flow specs.

Downloads

80

Readme

@flaier/core ✨

npm version npm downloads License

The Vue renderer for explainable flows and architecture walkthroughs.

@flaier/core is the main Vue renderer for Flaier.

Use it when you want to turn a JSON flow spec or manifest into an interactive walkthrough inside a Vue application, a demo surface, or an internal developer tool.

🎯 What It Is Used For

  • Explaining how a request, workflow, or architecture behaves step by step.
  • Embedding interactive system diagrams in Vue apps instead of static screenshots.
  • Rendering AI-generated flow artifacts in a polished UI people can actually inspect.
  • Exporting diagrams for docs, decks, tickets, and async review threads.

🌟 Features

  • 🎬 Narrative playback with active-step focus, autoplay, and timeline controls.
  • 🏗 Architecture rendering with zones, inspector panels, and topology-first layouts.
  • 🗂 Manifest support for loading many related flows behind one entry point.
  • 📤 PNG and PDF export for the full diagram, not just the visible viewport.
  • 🎨 Bundled CSS and built-in node renderers so the default experience looks production-ready fast.

🧭 Common Use Cases

Vue Apps

Embed flows directly inside internal tools, product surfaces, or engineering portals without building a renderer from scratch.

AI-Generated Specs

Point the component at checked-in JSON, generated artifacts, or remote spec URLs and render them in a UI people can step through.

Architecture Reviews

Switch to architecture mode when you need a cleaner system view for discussing boundaries, dependencies, and transitions.

📦 Install

npm i @flaier/core

🚀 Basic Usage

<script setup lang="ts">
import { Flaier } from "@flaier/core";
import "@flaier/core/style.css";
</script>

<template>
  <Flaier src="./flow-specs/manifest.json" :interval="3000" />
</template>

🧠 Accepted Inputs

Flaier accepts:

  • a single flow spec object,
  • a single flow spec JSON path or URL,
  • a multi-flow manifest object,
  • or a multi-flow manifest JSON path or URL.

That makes @flaier/core a good fit whether your specs come from checked-in files, generated artifacts, or remote APIs.

🧩 When To Use @flaier/nuxt Instead

Stay with @flaier/core when you are in plain Vue.

Reach for @flaier/nuxt when you want:

  • global Nuxt wrapper components,
  • easy embedding in Nuxt Content or Docus markdown,
  • or docs-site-friendly fullscreen and client-only behavior out of the box.

🔗 Links

  • Repository: https://github.com/WeAreRetex/flaier
  • Package source: https://github.com/WeAreRetex/flaier/tree/main/packages/core
  • Docs source: https://github.com/WeAreRetex/flaier/tree/main/apps/docs
  • Nuxt integration: https://www.npmjs.com/package/@flaier/nuxt
  • Viewer example: https://github.com/WeAreRetex/flaier/tree/main/apps/viewer