
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@byu-oit/line-chart
Advanced tools
Generate a line chart in svg format. Intended to be used to generate an API response.
Generate a line chart in svg format to be used as an API response.
import lineChart from '@byu-oit/line-chart'
const myData = [10, 12, 14, 24, 38]
const myDataLabels = ['A', 'B', 'C', 'D', 'E']
const chartSvg = lineChart({data: myData, labels: myDataLabels})
The line chart function takes a single configuration parameter.
| key | type | required? | description |
|---|---|---|---|
| data | Array of Numbers, or 2 Dimensional Array of Numbers | required | An array of values to chart. For example, if you want to chart visits per day, your data could be [104, 78, 120, 88] with labels of ['May 13', 'May 14', 'May 15', 'May 16']. The values may themselves be arrays, but must all have the same length. |
| labels | Array of Strings | required | An array of string labels corresponding by index to the associated data element. |
| legendLabels | [string labels] | optional | An array of labels for the line colors. For example, you could chart visits per day, with each browser in a different color. |
| colors | Array of Strings | optional | Supply custom colors for the lines. |
FAQs
Generate a line chart in svg format. Intended to be used to generate an API response.
We found that @byu-oit/line-chart demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 open source maintainers 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 researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.