Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
@keboola/flow-builder
Advanced tools
$ yarn add @keboola/flow-builder
Ensure that react@16.x.x
and react-dom@16.x.x
are installed as peer dependencies.
import "@keboola/flow-builder/dist/Graph.css"; // include this CSS file in your bundle
import * as Flow from "@keboola/flow-builder";
<Flow.Graph edges={["a.out->b+c+d.in"]}>
<Flow.Node name="a" position={[50, 50]}>
<Flow.Output name="out" />
<div className="content">Node A</div>
</Flow.Node>
<Flow.Group name="b+c+d" position={[50, 200]}>
<Flow.Input name="in" />
<Flow.Node name="b">
<div className="content">Node B</div>
</Flow.Node>
<Flow.Node name="c">
<div className="content">Node C</div>
</Flow.Node>
<Flow.Node name="d">
<div className="content">Node D</div>
</Flow.Node>
</Flow.Group>
</Flow.Graph>;
flow-builder
can also be used directly in the browser:
<!-- React + ReactDOM -->
<script crossorigin src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<!-- flow-builder -->
<link
crossorigin
rel="stylesheet"
href="https://unpkg.com/@keboola/flow-builder@<version>/dist/Graph.css"
/>
<script
crossorigin
type="text/javascript"
src="https://unpkg.com/@keboola/flow-builder@<version>/dist/index.umd.js"
></script>
$ yarn dev
MIT licensed, see LICENSE file.
FAQs
Flow graph rendering
The npm package @keboola/flow-builder receives a total of 0 weekly downloads. As such, @keboola/flow-builder popularity was classified as not popular.
We found that @keboola/flow-builder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.