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.
svg-use-it
Advanced tools
In many web projects there are browser lists including IE10 and 11 which sadly don't support fragment identifiers on external resources.
This polyfill solves this problem by simply inlining the references shapes from the given file without user agent sniffing.
SVG gives us the ability to use instances of shapes which is pretty amazing for
icon libraries.
Just add a svg
tag to your markup with a use
tag as child and add your
resource's file path with the id hash of your desired shape like this:
<svg viewBox="0 0 64 64">
<!-- referencing id "menu" from "/path/to/my/icons.svg" -->
<use xlink:href="/path/to/my/icons.svg#menu"></use>
</svg>
Just import SVGuseIt into your script and execute it on DOMContentLoaded
:
import svgUseIt from 'svg-use-it';
document.addEventListener('DOMContentLoaded', () => {
svgUseIt();
});
Provide a root selector to search in <string>
.
Default: body
You can pass an array of direct children of rootSelector to be
ignored for replacement.
Default: []
FAQs
SVG use polyfill for IE10
The npm package svg-use-it receives a total of 69 weekly downloads. As such, svg-use-it popularity was classified as not popular.
We found that svg-use-it 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
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.