
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
gradient-svg
Advanced tools
This module creates svg gradient output for gradient.js modules.
gradient.js is a javascript module that takes your source colors array and configuration object, and returns a gradient suitable for your needs.
const svg = new Svg()
const gradient = svg.get([
[100, 34, 230, 0.5],
[10, 33, 20, 0.6],
[1, 12, 12, 0.3]
],{
base: {
interpolation: 'linear',
mode: 'rgb',
samples: 40,
lightnessCorrection: true
},
svg: {
type: 'radial',
cx: 0.5,
cy: 0.5,
r: 0.3,
spreadMethod: 'reflect'
}
},
/* third parameter - raw - is by default set to false, so it returns the svg gradient element.
Set to true if you want to get an object. */
)
{
type: 'linear' | 'radial'
id: sting // gradient's unique identifier
angle?: number // between 0 and 359
x1?: number // linear gradient's first point's position on the x axis
y1?: number // linear gradient's first point's position on the y axis
x2? number // linear gradient's second point's position on the x axis
y2?: number // linear gradient's second point's position on the y axis
cx?: number // radial gradient's center point position on the x axis
cy?: number // radial gradient's center point position on the y axis
r?: number // radial gradient's radius
fx?: number // radial gradient's focal point position on the x axis
fy?: number // radial gradient's focal point position on the y axis
spreadMethod?: 'pad' | 'repeat' | 'reflect'
gradientUnits?: 'objectBoundingBox' | 'userSpaceOnUse'
}
FAQs
Svg module of the gradient.js library
The npm package gradient-svg receives a total of 5 weekly downloads. As such, gradient-svg popularity was classified as not popular.
We found that gradient-svg 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.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.