Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
d3plus-priestley
Advanced tools
A reusable Priestley timeline built on D3.
If you use NPM, npm install d3plus-priestley
. Otherwise, download the latest release. The released bundle supports AMD, CommonJS, and vanilla environments. Create a custom bundle using Rollup or your preferred bundler. You can also load directly from d3plus.org:
<script src="https://d3plus.org/js/d3plus-priestley.v0.1.full.min.js"></script>
Priestly Timelines (named after 18th-century English theologian Joseph Priestly), show the duration of multiple data points over time by stacking blocks to best fit. Given data with unique IDs and start and end dates:
var data = [
{id: "alpha", start: 2004, end: 2007},
{id: "epsilon", start: 2007, end: 2012},
{id: "beta", start: 2005, end: 2010},
];
It's only requires a few lines of code to create a Priestly Timeline:
new d3plus.Priestley()
.data(data)
.render();
Click here to view this example live on the web.
Viz
Kind: global class
Extends: Viz
Creates a priestley timeline based on an array of data.
If value is specified, sets the config method for the axis and returns the current class instance. If value is not specified, returns the current axis configuration.
Kind: static method of Priestley
Chainable
Param | Type |
---|---|
[value] | Object |
If value is specified, sets the end accessor to the specified function or key and returns the current class instance. If value is not specified, returns the current end accessor.
Kind: static method of Priestley
Chainable
Param | Type |
---|---|
[value] | function | String |
If value is specified, sets the start accessor to the specified function or key and returns the current class instance. If value is not specified, returns the current start accessor.
Kind: static method of Priestley
Chainable
Param | Type |
---|---|
[value] | function | String |
FAQs
A reusable Priestley timeline built on D3.
The npm package d3plus-priestley receives a total of 218 weekly downloads. As such, d3plus-priestley popularity was classified as not popular.
We found that d3plus-priestley 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.