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 🙏

© 2024 – Pkg Stats / Ryan Hefner

connect-it

v1.1.0

Published

Connect everything together with SVG lines. `<connect-it>` is a web component that allows you to create various types of diagrams, such as flowcharts, mind maps, network diagrams, org charts, and flow diagrams. The component is highly customizable, so you

Downloads

12

Readme

<connect-it>

Connect everything together with SVG lines. <connect-it> is a web component that allows you to create various types of diagrams, such as flowcharts, mind maps, network diagrams, org charts, and flow diagrams. The component is highly customizable, so you can create many other types of diagrams as well.

Features

  • Suitable for creating different types of diagrams
  • independent of node types
  • Customizable link colors and sizes
  • Customizable markers (circle, square, triangle)
  • Create interactive diagrams by adding event handlers for edges (click, mouseover, mouseout)

Examples/Demos

The best way to become familiar with the library is to check out this demos:

Installing

Using npm:

npm

$ npm install connect-it

Then import it:

<script src="./node_modules/connect-it/dist/connect-it.js" defer></script>

Using jsDelivr CDN:

<script src="https://cdn.jsdelivr.net/npm/connect-it/dist/connect-it.js"></script>

Using unpkg CDN:

<script src="https://unpkg.com/connect-it/dist/connect-it.js"></script>

Usage

Nodes

Specify an Id for your node and put it inside the <nodes> tag. You can style it as you wish.

<connect-it>
  <nodes>
    <div id="node1">First</div>
    <div id="node2">Second</div>
    <div id="node3">Third</div>
  </nodes>
</connect-it>

Adjacents

Define source and adjacent nodes to draw the graph. You can specify the color and size of the link.

<connect-it>
  <nodes>
    <div id="node1">First</div>
    <div id="node2">Second</div>
    <div id="node3">Third</div>
  </nodes>
  <edges>
    <edge from="node1" to="node2" color="red"></edge>
    <edge from="node1" to="node3"></edge>
    <edge from="node2" to="node3" size="2"></edge>
  </edges>
</connect-it>

Edge Markers

You can define different shapes inside the <shapes> tag and use them as an edge marker. For now, we support 3 type of shapes; circle, square and triangle.

<connect-it>
  <nodes>
    <div id="node1">First</div>
    <div id="node2">Second</div>
    <div id="node3">Third</div>
  </nodes>
  <edges>
    <edge from="node1" to="node2" marker-start="s1" marker-end="t1"></edge>
    <edge from="node1" to="node3"></edge>
    <edge from="node2" to="node3"></edge>
  </edges>
  <shapes>
    <shape name="t1" type="triangle" size="10" color="red"></shape>
    <shape name="s1" type="square" size="10"></shape>
    <shape name="c1" type="circle" size="5" color="red"></shape>
  </shapes>
</connect-it>

Event Handlers

connect-it provides some event handlers that you can use to create interactive diagrams. The following event handlers are available now:

  • onEdgesMouseover: Called when the user hovers over an edge
  • onEdgesMouseout: Called when the user stops hovering over an edge
  • onEdgesClick: Called when the user clicks on an edge

You can use these event handlers to create custom interactions and animations in your graph.

Limitations

Currently fixed and sticky position is not supported.