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

draad

v1.0.4

Published

Pure JS (ES6 and ES5) plugin for line (SVG) connecting elements in DOM.

Downloads

13

Readme

Draad.js

Simple javascript plugin without any dependencies. It helps with creating designs that contains something like treasure hunt map or timeline path.

It is plain JS (ES6) script with babelized (ES5) version using Babel JS compiler.

When is called Draad.js will create an SVG element that connects all the elements with defined class and it will be by default located in the body. SVG parent can be changed via options.

NPM

DEMO 1

DEMO 2

How to use

new Draad();

Minimum setup

const newDraad = new Draad('connectingElementClass');

It needs unique class for the elements that needs to be connected

<span class="connectingElementClass"></span>

Ideal usage:

const newDraad = new Draad('elements', {
    parentClass: 'container',
    smoothing: 0.5,
    lineWidth: 2,
    dasharray: '5 5 3',
    wait: 300,
    responsive: true
});

Removing line

newDraad.destroy;

Options

Option | Type | Default | Example | Description ------ | ---- | ------- | ------- | ----------- element | string | | 'class' | Enables elements connecting parentClass | string | | 'class' | If not passed body will be parent of the SVG line offsetX | number | half of an element width | 20 | Enables more precise line positioning offsetY | number | half of an element height | 32 | Enables more precise line positioning fill | string | | '#345adf' | It will create contour color | string | '#000' | '#17f2a8' | Defines line color lineWidth | number | 1 | 12 | Defines line width in px lineOpacity | number | 1 | 0.6 | Defines line visibility dasharray | string | | '5 4 5' | Transforms solid line to dashed cap | string | | 'round' | It represents CSS property stroke-linecap responsive | boolean | false | true | Enables responsive line wait | number | 0 | 1000 | It will wait with creating a line by defined milliseconds smoothing | number | 0.2 | 3.3 | It smoothes line curves and if it's 0 passed the line will be straight with sharp edges absoluteUnits | boolean | false | true | Coordinates can be absolute if parent without position: relative; is added

Useful to know

  • connected elements needs to have same parent
  • connected elements don't needs to be in the same container
  • elements positioning is irrelevant
  • additional SVG styling and animating is possible because the line is just another element in DOM

License

This project is licensed under the MIT License - see the LICENSE.md file for details.