Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
timeline-plus
Advanced tools
Based on vis.js Timeline (v4.21.0) - [https://github.com/almende/vis.git](https://github.com/almende/vis.git). The vis.js library was initially developed by [Almende B.V](http://almende.com).
Based on vis.js Timeline (v4.21.0) - https://github.com/almende/vis.git. The vis.js library was initially developed by Almende B.V.
The 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.
I 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.
Install via npm:
$ npm install timeline-plus
Or include the files via unpkg:
https://unpkg.com/timeline-plus/dist/timeline.js.
and
https://unpkg.com/timeline-plus/dist/timeline.css.
Or download the library from the github project: https://github.com/yotamberk/timeline.git.
https://yotamberk.github.io/timeline-plus/
A basic example on loading a Timeline is shown below. More examples can be found in the examples directory of the project.
<!DOCTYPE HTML>
<html>
<head>
<title>Timeline basic demo</title>
<script src="timeline/dist/timeline.js"></script>
<link href="timeline/dist/timeline.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="timeline"></div>
<script type="text/javascript">
var container = document.getElementById('timeline');
var data = [
{id: 1, content: 'item 1', start: '2013-04-20'},
{id: 2, content: 'item 2', start: '2013-04-14'},
{id: 3, content: 'item 3', start: '2013-04-18'},
{id: 4, content: 'item 4', start: '2013-04-16', end: '2013-04-19'},
{id: 5, content: 'item 5', start: '2013-04-25'},
{id: 6, content: 'item 6', start: '2013-04-27'}
];
var options = {};
var timeline = new timeline.Timeline(container, data, options);
</script>
</body>
</html>
FAQs
Based on vis.js Timeline (v4.21.0) - [https://github.com/almende/vis.git](https://github.com/almende/vis.git). The vis.js library was initially developed by [Almende B.V](http://almende.com).
The npm package timeline-plus receives a total of 270 weekly downloads. As such, timeline-plus popularity was classified as not popular.
We found that timeline-plus demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.