
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
triangle-patterns
Advanced tools
Draw triangle patterns on canvas or export to SVG.
On canvas:
<canvas id="pattern" height="600" width="400"></canvas>
<script src="triangle-patterns.js"></script>
<script>
const ctx = document.getElementById('pattern').getContext('2d');
TrianglePattern({
width: 600,
height: 400,
}).draw(ctx);
</script>
Export to SVG:
<script src="triangle-patterns.js"></script>
<script>
const svg = TrianglePattern({
width: 600,
height: 400,
}).svg();
//...use svg...
</script>
{
//size of initial points mesh (horizontal and vertical)
meshStepX: 35,
meshStepY: 35,
//random seed (same values gives same results)
seed: 123456,
//max point position deviation, percent
variance: 0.05,
//mesh mode colors
meshColorStroke: 'black',
meshColorFill: 'white',
//color palettes: arrays of colors for horizontal and vertical scales
//default ColorBrewer colors available: https://github.com/gka/chroma.js/blob/main/src/colors/colorbrewer.js
//use them with TrianglePattern.colors property, for example:
//colorsX: TrianglePattern.colors.PuBuGn
colorsX: TrianglePattern.colors.Oranges,
colorsY: TrianglePattern.colors.Purples,
//randomize colors on x, y or both palettes
colorRandomizePalette: TrianglePattern.randomizePalette.none,
//flip colors on x, y or both palettes
colorFlipPalette: TrianglePattern.flipPalette.none,
//shift palette colors
colorShiftPaletteX: 0,
colorShiftPaletteY: 0,
//mix ratio between horizontal and vertical scales
colorMixRatio: 0.5,
//use some color styles from TrianglePattern.styles property
colorStyle: TrianglePattern.styles.default,
colorStyleJitterIntensity: 0.15,
colorStyleShadowsIntensity: 0.85,
colorStyleShiningIntensity: 0.85,
colorStyleSaturateIntensity: 0.85,
colorMode: 'lrgb',
}
FAQs
Draw triangle patterns on canvas or export to SVG
The npm package triangle-patterns receives a total of 6 weekly downloads. As such, triangle-patterns popularity was classified as not popular.
We found that triangle-patterns 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.