
Product
Secure Your AI-Generated Code with Socket MCP
Socket MCP brings real-time security checks to AI-generated code, helping developers catch risky dependencies before they enter the codebase.
fuse-box-svgstore-plugin
Advanced tools
A FuseBox plugin creating and bundling svg symbol sprites with svgstore.
This FuseBox plugin allows you to handling SVG files with svgstore. It exports SVG texts those are wraped with <symbol>
elements and path to them. Useful for structuring SVG sprites.
npm i --save-dev fuse-box-svgstore-plugin
or
yarn add --dev fuse-box-svgstore-plugin
fuse.js
file like below.
const { FuseBox } = require('fuse-box');
const { SVGStorePlugin } = require('fuse-box-svgstore-plugin');
const fuse = FuseBox.init({
//...
plugins: [SVGStorePlugin()],
//...
});
// ...
svg
and path
from your SVG files.
import { svg, path } from './path/to/svgfile.svg';
console.log(svg);
// <svg><symbol id="...id_for_sprite...">...</symbol></svg>
console.log(path);
// #...id_for_sprite...
const e = document.createElement('div');
e.innerHTML = svg;
e.firstElementChild.style.display = 'none';
document.body.appendChild(e.firstElementChild);
<use>
tag.
<html>
<body>
<div>
<svg class="icon"></svg>
</div>
<!-- Non displayed SVG is injected here by previous step. -->
</body>
</html>
const target = document.body.querySelector('svg.icon');
target.innerHTML = `<use xlink:href="${path}" />`;
No options available now.
FAQs
A FuseBox plugin creating and bundling svg symbol sprites with svgstore.
We found that fuse-box-svgstore-plugin 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.
Product
Socket MCP brings real-time security checks to AI-generated code, helping developers catch risky dependencies before they enter the codebase.
Security News
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Research
Security News
Socket’s Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.