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

@webonweb/vue-connector

v0.2.3

Published

This Vue library enables the creation of interactive workflow transitions and visual IVR diagrams. Featuring an intuitive drag-and-drop interface and ready-made components, developers can quickly design and integrate complex business processes and call-ro

Readme

⭐️ Description

Vue Connector library enables the creation of interactive flow diagrams, IVR schematics, and visual trees and graphs. Thanks to its intuitive drag-and-drop interface, developers can easily design and modify complex business processes, IVR logic, or relationships between application elements. A rich set of built-in components simplifies configuration and customization of views to meet specific needs, while the flexible architecture allows for seamless integration with the existing Vue ecosystem.

top-language GitHub code size in bytes GitHub last commit

🛠 Setup

To install the package and start using it, you need to download it from the package manager and install it using one of the commands.

$ bun i @webonweb/vue-connector

# or
$ pnpm i @webonweb/vue-connector

# or
$ yarn add @webonweb/vue-connector

# or
$ npm i @webonweb/vue-connector

🧪 Example

🎮 Quickstart

<script lang="ts" setup>
  import { ref } from 'vue';
  import {
    CONNECTION_TYPE,
    NODE_GROUP_TYPE,
    POSITION_TYPES,
    SchemeGraph,
    type NodeType,
    type SchemeGraphType,
  } from '@webonweb/vue-connector';

  import '@webonweb/vue-connector/style.css';

  const scheme = ref<SchemeGraphType>({
    scale: 50,
    nodes: {},
  });

  const elements = ref<NodeType[]>([
    {
      unique: '760778cc-a362-41cf-87d3-f8fae69a5348',
      label: 'Main',
      type: NODE_GROUP_TYPE.group,
      childrens: [
        {
          unique: '32de9eee-7b08-4127-b190-76023ca30b80',
          label: 'Example 1',
          type: NODE_GROUP_TYPE.node,
          count: 2,
          description:
            'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vitae enim sapien. Vivamus pulvinar fermentum sapien, non mattis risus commodo vel.',
        },
        {
          unique: '1614ce34-f01c-4602-bd62-e31d9778cb00',
          label: 'Example 2',
          type: NODE_GROUP_TYPE.node,
          color: '#d44fd5',
          icon: '<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 9.5C13.3807 9.5 14.5 10.6193 14.5 12C14.5 13.3807 13.3807 14.5 12 14.5C10.6193 14.5 9.5 13.3807 9.5 12C9.5 10.6193 10.6193 9.5 12 9.5Z" fill="#000000"/> </svg>',
          connections: [POSITION_TYPES.left, POSITION_TYPES.right],
          connectionType: CONNECTION_TYPE.boolean,
        },
      ],
    },
  ]);
</script>
<template>
  <div style="position: relative; width: 1000px; height: 1000px">
    <SchemeGraph
      v-model:scheme="scheme"
      :elements
    >
      <template
        v-for="element in Object.keys(scheme.nodes)"
        v-slot:[`node-${element}`]="{ node }"
      >
        {{ node }}
      </template>
    </SchemeGraph>
  </div>
</template>

⚠️ Vue 2

The library does not work with previous versions of Vue. It uses the latest Vue 3 standards and is based on the Composition API.