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

@denysvuika/flowy

v1.0.1

Published

The minimal javascript library to create flowcharts

Downloads

6

Readme

Flowy

Demo A javascript library to create pretty flowcharts with ease ✨

Live demo

Flowy makes creating WebApps with flowchart functionality an incredibly simple task. Build automation software, mind mapping tools, or simple programming platforms in minutes by implementing the library into your project.

Table of contents

Features

Currently, Flowy supports the following:

  • Responsive drag and drop
  • Automatic snapping
  • Block rearrangement
  • Delete blocks
  • Automatic block centering

You can try out the demo to see the library in action.

Installation

Adding Flowy to your WebApp is incredibly simple:

  1. Include jQuery to your project
  2. Link https://unpkg.com/@denysvuika/flowy to your project
<script src="https://unpkg.com/@denysvuika/flowy"></script>

Installing via NPM

With NPM:

npm install @denysvuika/flowy

With Yarn:

yarn add @denysvuika/flowy

Running Flowy

Initialization

flowy(canvas, ongrab, onrelease, onsnap, spacing_x, spacing_y);

| Parameter | Type | Description | | ----------- | --------------------- | ---------------------------------------------------------------- | | canvas | jQuery object | The element that will contain the blocks | | ongrab | function (optional) | Function that gets triggered when a block is dragged | | onrelease | function (optional) | Function that gets triggered when a block is released | | onsnap | function (optional) | Function that gets triggered when a block snaps with another one | | spacing_x | integer (optional) | Horizontal spacing between blocks (default 20px) | | spacing_Y | integer (optional) | Vertical spacing between blocks (default 80px) |

To define the blocks that can be dragged, you need to add the class .create-flowy

Example

HTML

<div class="create-flowy">The block to be dragged</div>
<div id="canvas"></div>

Javascript

var spacing_x = 40;
var spacing_y = 100;

// Initialize Flowy
flowy($('#canvas'), onGrab, onRelease, onSnap, spacing_x, spacing_y);

function onGrab() {
  // When the user grabs a block
}
function onRelease() {
  // When the user releases a block
}
function onSnap() {
  // When a block snaps with another one
}

Methods

Get the flowchart data

// As an object
flowy.output();
// As a JSON string
JSON.stringify(flowy.output());

The JSON object that gets outputted looks like this:

{
  "id": 1,
  "parent": 0,
  "data": [
    {
      "name": "blockid",
      "value": "1"
    }
  ]
}

Here's what each property means:

| Key | Value type | Description | | -------- | ------------------ | -------------------------------------------------------------------------------- | | id | integer | Unique value that identifies a block | | parent | integer | The id of the parent a block is attached to (-1 means the block has no parent) | | data | array of objects | An array of all the inputs within the selected block | | name | string | The name attribute of the input | | value | string | The value attribute of the input |

Delete all blocks

To remove all blocks at once use:

flowy.deleteBlocks();

Currently there is no method to individually remove blocks. The only way to go about it is by splitting branches manually.

Developing

You can use the following scripts with npm run <script> or yarn <script> commands:

| script | description | | ---------- | ------------------------------------------------- | | build | build the library to the /dist output folder | | start | run the demo app (requires build) | | build-docs | build the docs folder for the live demo | | start-docs | runs the live demo locally from the docs folder |

License

MIT

Copyright for portions of project DenysVuika/flowy are held by Alyssa X, 2019 as part of project alyssaxuu/flowy.

All other copyright for project DenysVuika/flowy are held by Denys Vuika, 2019.