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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@svar-ui/svelte-gantt

v2.6.1

Published

Interactive and customizable Svelte Gantt chart component

Downloads

1,014

Readme

SVAR Svelte Gantt Chart

WebsiteGetting StartedDemos

npm License npm downloads Last Commit

SVAR Svelte Gantt is a customizable, interactive Gantt chart component written in Svelte and designed for visualizing project timelines. The component provides an intuitive interface for managing tasks and dependencies directly on the timeline via drag-and-drop or a customizable task edit form. Comes with full Typescript support, developer-friendly API, and flexible CSS styling.

:sparkles: Key Features

Core features designed for flexible and interactive project timeline management:

  • Interactive drag-and-drop interface
  • Intuitive and customizable task edit form
  • Task dependencies
  • Task progress shown on a taskbar
  • Hierarchical view of sub tasks
  • Configurable timeline with flexible time units
  • Custom time scales: define custom periods like sprints or stages
  • Weekends/holidays highlights
  • Custom HTML in grid cells
  • Toolbar and context menu
  • Tooltips for taskbars
  • Sorting tasks in grid
  • Filtering (including natural language search)
  • Zooming with scroll
  • Hotkeys support for common actions
  • Fast performance with large data sets
  • Localization
  • Light and dark skins
  • Full TypeScript support

🚀 PRO Edition

SVAR Svelte Gantt is available in open-source and PRO Editions. The PRO Edition offers additional features and automation logic:

  • Work days calendar
  • Auto-scheduling (forward mode and Finish-to-Start dependencies)
  • Summary tasks automation
  • Critical path
  • Slack visualization
  • Baselines
  • Rollups
  • Split tasks
  • Vertical markers
  • Unscheduled tasks
  • Undo/redo
  • Export to PDF, PNG, Excel
  • MS Project import/export

Visit the pricing page for full feature comparison, licensing details, and free trial, or see the live demo.

:hammer_and_wrench: How to Use

To use the Gantt chart, simply import the package and include the component in your Svelte file:

<script>
	import { Gantt } from "@svar-ui/svelte-gantt";

	const tasks = [
		{
			id: 1,
			start: new Date(2024, 3, 2),
			end: new Date(2024, 3, 17),
			text: "Project planning",
			progress: 30,
			parent: 0,
			type: "summary",
			open: true,
			details: "Outline the project's scope and resources.",
		},
	];
	const links = [];
	const scales = [
		{ unit: "month", step: 1, format: "%F %Y" },
		{ unit: "day", step: 1, format: "%j", css: dayStyle },
	];
</script>

<Gantt {tasks} {links} {scales} />

For further instructions, follow the detailed how-to-start guide.

How to Modify

Typically, you don't need to modify the code. However, if you wish to do so, follow these steps:

  1. Run yarn to install dependencies. Note that this project is a monorepo using yarn workspaces, so npm will not work
  2. Start the project in development mode with yarn start

Run Tests

To run the test:

  1. Start the test examples with:
    yarn start:tests
  2. In a separate console, run the end-to-end tests with:
    yarn test:cypress

⭐ Show Your Support

If SVAR Svelte Gantt helps your project, give us a star! It helps us reach more developers and keeps us motivated to add new features.

:speech_balloon: Need Help?

Join our community forum to get help and submit feature requests.