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.
path-intersection
Advanced tools
Computes the intersection between two SVG paths.
Execute npm run dev
and navigate to http://localhost:9876/debug.html
to see more examples.
var intersect = require('path-intersection');
var path0 = 'M30,100L270,20';
var path1 = 'M150,150m0,-18a18,18,0,1,1,0,36a18,18,0,1,1,0,-36z';
var intersection = intersect(path0, path1);
// [ { x: ..., y: ..., segment1: ..., segment2: ... }, ... ]
Results are approximate, as we use bezier clipping to find intersections.
Perform a full build of the library (lint + test) via
npm run all
The intersection logic provided by this library is derived from path.js
, a part of Snap.svg.
Use under the terms of the MIT license.
1.1.0
FEAT
: add TypeScript definitionsCheck git log
for earlier history.
FAQs
Computes the intersection between two SVG paths
The npm package path-intersection receives a total of 54,135 weekly downloads. As such, path-intersection popularity was classified as popular.
We found that path-intersection demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 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’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.