{"id":13554399,"url":"https://github.com/yotamberk/timeline-plus","last_synced_at":"2026-01-14T03:00:10.508Z","repository":{"id":57154509,"uuid":"127552515","full_name":"yotamberk/timeline-plus","owner":"yotamberk","description":"Timeline - chronological visualization of your data","archived":true,"fork":false,"pushed_at":"2019-11-09T18:47:49.000Z","size":4446,"stargazers_count":136,"open_issues_count":40,"forks_count":36,"subscribers_count":15,"default_branch":"master","last_synced_at":"2025-04-03T06:37:32.817Z","etag":null,"topics":["chart","charting-library","chronology","data-graph","data-visualization","datavisualization","graphs","javascript","timeline","timelinejs","visualization"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yotamberk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-03-31T16:57:07.000Z","updated_at":"2025-03-07T01:06:35.000Z","dependencies_parsed_at":"2022-09-06T19:22:17.193Z","dependency_job_id":null,"html_url":"https://github.com/yotamberk/timeline-plus","commit_stats":null,"previous_names":[],"tags_count":30,"template":false,"template_full_name":null,"purl":"pkg:github/yotamberk/timeline-plus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yotamberk%2Ftimeline-plus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yotamberk%2Ftimeline-plus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yotamberk%2Ftimeline-plus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yotamberk%2Ftimeline-plus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yotamberk","download_url":"https://codeload.github.com/yotamberk/timeline-plus/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yotamberk%2Ftimeline-plus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28408799,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T01:52:23.358Z","status":"online","status_checked_at":"2026-01-14T02:00:06.678Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chart","charting-library","chronology","data-graph","data-visualization","datavisualization","graphs","javascript","timeline","timelinejs","visualization"],"created_at":"2024-08-01T12:02:47.004Z","updated_at":"2026-01-14T03:00:10.425Z","avatar_url":"https://github.com/yotamberk.png","language":"JavaScript","funding_links":[],"categories":["JavaScript","data-visualization"],"sub_categories":[],"readme":"# DEPRECATED: This project has been deprecated! All the features have been moved to [vis-timeline](https://github.com/visjs/vis-timeline) (released in \u003e v6.0.0) and is now maintained only there. \n\n### Feel free to check that project out and to submit [issues](https://github.com/visjs/vis-timeline/issues) \\ [pull requests](https://github.com/visjs/vis-timeline/pulls) there.\n\n\n\n\n\n# Timeline\n\nBased on vis.js Timeline (v4.21.0) - [https://github.com/almende/vis.git](https://github.com/almende/vis.git).\nThe vis.js library was initially developed by [Almende B.V](http://almende.com).\n\nThe last few years, the timeline module has been maintained mainly by me. Due to lack of support in the other modules of vis, I decided to branch off and seperate this module to my own project where I can procceed the great work that has been done there, and update fixes, feature requests and versions more often with no dependency of the other modules in vis.\n\nI intend to add features and fixes that are to my concern for my own projects. I will accept feature requests and merge requests, but will not prioritize them if not to my interest.\n\n## Install\n\nInstall via npm:\n\n    $ npm install timeline-plus\n    \nOr include the files via unpkg: \n\n[https://unpkg.com/timeline-plus/dist/timeline.js](https://unpkg.com/timeline-plus/dist/timeline.js). \n\nand\n\n[https://unpkg.com/timeline-plus/dist/timeline.css](https://unpkg.com/timeline-plus/dist/timeline.css).\n\n## Basic Example\n\nA basic example on loading a Timeline is shown below. More examples can be\nfound in the [examples directory](https://github.com/yotamberk/timeline/tree/master/examples)\nof the project.\n\n```html\n\u003c!DOCTYPE HTML\u003e\n\u003chtml\u003e\n\u003chead\u003e\n  \u003ctitle\u003eTimeline basic demo\u003c/title\u003e\n  \u003cscript src=\"timeline/dist/timeline.js\"\u003e\u003c/script\u003e\n  \u003clink href=\"timeline/dist/timeline.css\" rel=\"stylesheet\" type=\"text/css\" /\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n\u003cdiv id=\"timeline\"\u003e\u003c/div\u003e\n\n\u003cscript type=\"text/javascript\"\u003e\n  var container = document.getElementById('timeline');\n  var data = [\n    {id: 1, content: 'item 1', start: '2013-04-20'},\n    {id: 2, content: 'item 2', start: '2013-04-14'},\n    {id: 3, content: 'item 3', start: '2013-04-18'},\n    {id: 4, content: 'item 4', start: '2013-04-16', end: '2013-04-19'},\n    {id: 5, content: 'item 5', start: '2013-04-25'},\n    {id: 6, content: 'item 6', start: '2013-04-27'}\n  ];\n  var options = {};\n  var timeline = new timeline.Timeline(container, data, options);\n\u003c/script\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyotamberk%2Ftimeline-plus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyotamberk%2Ftimeline-plus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyotamberk%2Ftimeline-plus/lists"}