New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

zflowchart

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zflowchart

flowchart base on ZRender

latest
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

zflowchart

flowchart base on ZRender.

  npm install zflowchart

online demo

example

import FlowChart from 'zflowchart';

const fc = new FlowChart(document.getElementById('flowchart') as Element);
const start = fc.status('开始', 'success');
const process1 = fc.process('想出去走走');
const judgment1 = fc.judgment('是否有钱');
const judgment2 = fc.judgment('是否有假');
const process2 = fc.process('准备辞职');
const judgment3 = fc.judgment('是否裸辞');
const process3 = fc.process('哈哈哈');
const process5 = fc.process('呵呵呵');
const process6 = fc.process('666');
const judgment4 = fc.judgment('再来个判断');
const process7 = fc.process('777');
const process8 = fc.process('888');
const process4 = fc.process('走起,去哪里?');
const switch1 = fc.switch('选择目的地');
const destination1 = fc.process('欧洲');
const destination2 = fc.process('日本');
const destination3 = fc.process('西藏');
const end = fc.status('结束', 'error');

start.next(process1);
process1.next(judgment1);
judgment1.logicTrue(judgment2);
judgment1.logicFalse(end);
judgment2.logicTrue(process4);
judgment2.logicFalse(process2);
process2.next(judgment3);
process4.next(switch1);
switch1.pushCase(destination1);
switch1.pushCase(destination2);
switch1.pushCase(destination3);
destination2.next(end);
judgment3.logicTrue(process3);
judgment3.logicFalse(process5);
process5.next(process6);
process6.next(judgment4);
judgment4.logicTrue(process7);
judgment4.logicFalse(process8);

fc.draw(start);

Keywords

flowchart

FAQs

Package last updated on 04 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts