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

optform-gantt-chart

v0.0.8

Published

A Gantt chart for Optform

Readme

vue-gantt

A Configurable Gantt chart build for Vue.

Features & characteristics

  • Customizable table fields
  • Draggable charts
  • Customisable user fields
  • Simple design

Install & basic usage

npm install optform-gantt-chart

Minimum configuration

  • Items: a list of tasks shown in the Gantt chart
<template>
  <div id="app">
  	<gantt :items="items" />
  </div>
</template>

<script>
import Gantt from './components/gantt.vue'

export default {
  name: 'app',
  components: { Gantt },
  data() {
  	return {
      items: [
        { id: 1, summary: 'This is a task.', start_date: '2018-11-02 00:00', end_date: '2018-11-03 00:00', duration: 1 },
        { id: 2, summary: 'This is a task with a longer description.', start_date: '2018-11-03 00:00', end_date: '2018-11-04 00:00', duration: 1 },
        { id: 3, summary: 'You should first complete the first task.', start_date: '2018-11-04 00:00', end_date: '2018-01-11 00:00', duration: 7 },
        { id: 4, summary: 'And then, you should complete the second task.', start_date: '2018-11-07 00:00', end_date: '2018-11-09 00:00', duration: 9 },
        { id: 5, summary: 'Do not start with the last task.', start_date: '2018-11-09 00:00', end_date: '2018-11-15 00:00', duration: 6 },
        { id: 6, summary: 'It will make your project manager mad.', start_date: '2018-11-15 00:00', end_date: '2018-11-17 00:00', duration: 2 },
        { id: 7, summary: 'Very very very... mad.', start_date: '2018-11-17 00:00', end_date: '2018-11-19 00:00', duration: 2 },
        { id: 8, summary: 'But you only code once ;).', start_date: '2018-11-19 00:00', end_date: '2018-11-21 00:00', duration: 2 }
        ]
      }
  }
}
</script>

Configuration

props

| props | type | default | description | | ------------- | ------------- | ------------- | ------------- | | items | Array | [] | A list of all items shown in the Gantt | | title | String | '' | A title shown above the Gantt | | fields | Object | fields | A list of fields used in the header, items keys should match the header fields | | levels | Number | 2 | Item indentation levels | | dateLimit | Number,String | auto | Amount of dates shown in the chart | | startDate | String | today | The start date from witch the Gantt will be shown | | endDate | String | today + datelimit | The end date till witch the Gantt will be shown | | canEdit | Boolean | true | Whether or not Gantt tables can be edited | | user | Boolean, Object | { id: 'id', image: 'src' } | define the image and id field of a user object |

Fields

| key | type | description | | ------------- | ------------- | ------------- | | label | String | The Name displayed in the header | | component | String | The vue component that should represent the cells (gantt-text, gantt-date, gantt-number, gantt-user) | | width | Number | The fixed cell width | | placeholder | String | The text shown when the cell is empty |

The default fields when no field option is provided.

{
  summary: {
    label: 'Summary',
    component: 'gantt-text',
    width: 300,
    placeholder: 'Add a new task...'
  },
  start_date: {
    label: 'Start date',
    component: 'gantt-date',
    width: 95,
    placeholder: 'Start'
  },
  end_date: {
    label: 'End date',
    component: 'gantt-date',
    width: 95,
    placeholder: 'End'
  },
  duration: {
    label: 'Days',
    component: 'gantt-number',
    width: 50,
    placeholder: '0'
  }
}

Users

You can add user objects to the gantt by adding a gantt-user field type or by defining the user prop

You can define the user id and user image key that will be used in the Gantt chart. The user icon will be shown in the chart section of the Gantt chart.

  user: { id: id, image: 'cursom_src' }
  items: { user: { id: 1, custom_src: './default-1.png' } }

Additionally you can add a user field that will be added to the table portion of the Gantt chart.

user: { id: id, image: 'src' }
items: { user: { id: 1, src: './default-1.png' } }
fields: {
  user: {
    label: 'Usr.',
    component: 'gantt-user',
    width: 35
  }
}

events

| events | description | | ------------- | ------------- | | update | Triggers whenever a cell has been updated |

Local Dev

  • npm i
  • npm run serve

Error handling

error_messsage: ERR_OSSL_EVP_UNSUPPORTED
error_resolution: export NODE_OPTIONS=--openssl-legacy-provider

session data fields

  • start_date: the date when the session started
  • end_date: the date when the session ended
  • duration: the duration of the session in seconds
  • %proportion of the event duration compared to the total session duration