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 🙏

© 2024 – Pkg Stats / Ryan Hefner

jquery-timeline

v0.3.1

Published

History timeline jQuery plugin

Downloads

40

Readme

History Timeline jQuery Plugin

Install

npm

npm install jquery-timeline

bower

bower install jquery-timeline

Usage

Initialization

Create a div container

<div id="timeline"><div>

Initialize the Timeline

$("#timeline").timeline({
	// options
}); // Returns a jQuery object

OR

$.timeline({
	container: $("#timeline")
	// more options
}); // Returns Timeline object

OR even

new JQueryTimeline.Timeline({
	container: $("#timeline")
	// more options
}); // Returns Timeline object

Manipulation

You can either do it through jQuery selector

$("#timeline").timeline("addLine", {color: "indigo"});

or by calling methods of Timeline object

timeline.addLine({color: "indigo"});

Reference

Options

  • container: JQuery [optional]
  • zoom: number [optional] — zoom level, default: 100
  • scale: number [optional] — horizontal chart scale, default: 1
  • minorSections: number [optional] — number of minor sections, default: 5
  • lines: Array<LineOptions> [optional]
  • events: Array<EventOptions> [optional]

Zoom

Zoom is a floating point number in range 0 < zoom <= (1000 / minorSections). It defines a size of guide line major section in years.

For example, for zoom=100, will result in 1000 / 100 = 10 years in each major section. (Here 1000 is a zoom base constant)

LineOptions

Line is a group of events

  • color: string [optional] — any CSS compatible color value like red or #FF0000
  • events: Array<EventOptions> [optional]

EventOptions

Event is a history event, which could be either a single event or a date range

  • label: string — event short label (shown on timeline)
  • start: string — a date when an event had happened or started, allowed formats: YYYY, MM-YYYY, DD-MM-YYYY, BC dates should be prefixed with "-", e.g "-372", or "-01-07-372"
  • length: number [optional] — event length in years
  • end: string [optional] — a date when an event ended, allowed formats: YYYY, MM-YYYY, DD-MM-YYYY
  • color: string [optional] — any CSS compatible color value like red or #FF0000, overwrites color defined in line options, default: gray
  • name: string [optional] — event full name (shown in the tooltip)
  • description: string [optional] — event detailed description (shown in the tooltip)

Only one of length or end options required. If both provided length has higher priority.

Event Types

single event is an event which had happened on a single date or ended withing the same year.

Timeline

  • addLine(LineOptions): JQuery
  • addEvent(EventOptions): JQuery — adds event to the last line
  • addEvent(EventOptions, line: number): JQuery — adds event to the line with index line
  • scrollTo(year: number) — scrolls timeline to specifie year

License

Released under the MIT license.