Infinitely Customizable Node-Based User Interfaces with Svelvet!
Svelvet is a lightweight Svelte component library for building interactive node-based user interfaces and diagrams.
|
|
|
|
Version Updates
Shout out to our contributors! Here's what's new:
Changelog
Details Details Details Details Details Details Details Details Details
Key Features
- Easy to use: To get started with Svelvet, all you need is data for nodes and edges. Visit our documentation website for streamlined, user-friendly tutorials and examples on how to get the most out of your Svelvet interfaces!
- Interactive: Elegant and smooth interface when selecting a node to drag it across the graph.
- Customizable: Fully customizable Edges, Nodes, Backgrounds and components
- Reliable: Svelvet is written in TypeScript and tested with Vitest, Playwright and Svelte Testing Library. Svelvet is maintained by motivated engineers seeking to contribute to the larger Svelte developer community and library ecosystem.
- Room to Grow: There is so much we can do to improve, add features and make Svelvet the best version of itself - we welcome feedback and contributions! Scroll below for suggestions on what to contribute.
Installation
Svelvet is available as both an npm and a yarn package. You can install it by running one of the two commands:
npm install svelvet
yarn add svelvet
Quick Start
Start by importing the Svelvet and Node components into your application:
import { Svelvet, Node, Anchor, Edge, Controls } from 'svelvet';
A Svelvet canvas primarily consists of Nodes. You can pass any number of Nodes as children to the Svelvet wrapper. You can use all the standard conditional rendering syntax to populate nodes within the Svelvet component. Basic parameters like color, input and output count, label and more can be specified and feature two-way data binding with passed props. For greater customization, wrap your own custom components in our Node component and pass the whole thing to Svelvet.
Nodes, Edges and Anchors all feature click events, properties and functions to allow developers to fully customize the state of their graphs.
When creating custom Nodes, you can position any number of our Anchor components to enable dynamic connections. You can also wrap Nodes in a Group component to limit their boundaries and move them as one. These groups can be created dynamically by Shift + Click and dragging.
Finally, you can render our Controls, Minimap, Background and Theme Toggle components via props or named slots. In the latter use case, you can pass props to further customize them. The Controls component can wrap your own set of buttons as we expose the zoom/reset/lock actions using a let directive.
Svelvet is focused on dynamic edge connections, but if you'd like to specify edges ahead of time, you can pass an array of connections to any Anchor component. You can also pass a custom Edge component!
For more detailed use cases and examples, please visit our website.
<Svelvet width={500} height={500} theme="dark" initialZoom={0.6} minimap>
<Node />
<Node label="Demo Node" TD />
<Node id="node-id" inputs={2} />
<Node bgColor="red" inputs={10} outputs={5} height={200} position={{ x: 100, y: 100 }} />
<Controls slot="controls" horizontal />
</Svelvet>
Testing
Testing is done with Playwright, Vitest, and the Svelte Testing Library. You can find tests in the /tests folder. We plan on dramatically expanding test coverage very soon. In order to run the tests use the command:
For End-to-End testing
npx playwright test
For unit testing
npm run test:unit [filename]
The Svelvet Team
- Rathna Chinthalapalli β’ LinkedIn β’ Github
- Ruxin Zheng β’ LinkedIn β’ Github
- Samuel Alvarez β’ LinkedIn β’ Github
- Wesley Waters β’ LinkedIn β’ Github
- Brian Holmes β’ LinkedIn β’ Github
- Britta Ager β’ LinkedIn β’ Github
- Thomas Kady β’ LinkedIn β’ Github
- Jen Lee β’ LinkedIn β’ Github
- Ernesto Gonzalez β’ LinkedIn β’ Github
- Michael Chiang β’ LinkedIn β’ Github
- Rachel He β’ LinkedIn β’ Github
- Horacio Vallejo β’ LinkedIn β’ Github
- Aaron Willett β’ LinkedIn β’ Github
- Alexander Zambrano β’ LinkedIn β’ Github
- Andrew Widjaja β’ LinkedIn β’ Github
- Anu Sharma β’ LinkedIn β’ Github
- Justin Wouters β’ LinkedIn β’ Github
- Walter DeVault β’ LinkedIn β’ Github
- Ali Adams β’ LinkedIn β’ Github
- Von Garcia β’ LinkedIn β’ Github
- Damian Lim β’ LinkedIn β’ Github
- Christopher Mander β’ LinkedIn β’ Github
- David Jakubiec β’ LinkedIn β’ Github
- Jeffrey Wentworth β’ LinkedIn β’ Github
- Johnny Tran β’ LinkedIn β’ Github
- Samee Vohra β’ LinkedIn β’ Github
- Abhi Gullapalli β’ LinkedIn β’ Github
- Ian Hnizdo β’ LinkedIn β’ Github
- Mauricio Castro β’ LinkedIn β’ Github
- Ryan Potter β’ LinkedIn β’ Github
- Emma Ferguson β’ LinkedIn β’ Github
- Dillon McKenna β’ LinkedIn β’ Github
- Taylor Alan β’ LinkedIn β’ Github
- Timmy Lem β’ LinkedIn β’ Github
- Tony Lim β’ LinkedIn β’ Github
How to Contribute
Please refer to the roadmap for the full list of ideas for iteration.
Some ideas inspired by v8.0.0 include:
Example Showcase: we've added a new section to the documentation which will contain example sandboxes of features and potential usecases of Svelvet. If you would like to contribute to the showcase with an example of how youβre using Svelvet, reach out to the team with your project via Github discussion.
Additional functionality to the Drawer Component: we are planning to make updates to address the ablity to 1) take custom Nodes as props, 2) edit and remove nodes that already exisits on the canvas 3) export the canvas as JSON or PDF file.
Additional Data Input Components: we plan on creating additional input/parameter components that integrate with our data flow system and can be used when composing custom Nodes.
Extensive Test Converage: We expect to have full E2E and unit test coverage relatively soon.
GET CREATIVE!! Svelvet is an amazing project that has so much room to grow.
Credits
Inspired by React Flow, Svelvet expands the tools available to Svelte developers and makes Svelte more inviting to both new and seasoned software engineers.
License
Svelvet is developed under the MIT license.