
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
fork-svg-loader
Advanced tools
Webpack loader that inlines SVG content so that you can control and alter it. Unlike SVG inserted as an image, svg-loader allows to animate, change color, control size, etc.
This is a fork of svg-loader to add some features.
npm install fork-svg-loader --save-dev
# or
yarn add --dev fork-svg-loader
// ...
{
test: /\.svg$/,
use: ['svg-loader'] // 👈 Add loader
},
// ...
// with options
{
test: /\.svg$/,
use: [{
loader: 'svg-loader',
options: {
transformAttributes: function (attributes) {
// do your transform
return attributes;
}
}
}] // 👈 Add loader
},
svg-loader exports an object with two properties:
attributes
- the root SVG tag attributes.content
- the SVG content (excluding the root svg
tag).See example output for require('./icon.svg')
:
{
attributes: {
xmlns: 'http://www.w3.org/2000/svg',
viewBox: '0 0 448 512'
},
content: '<path d="M441.9 167.3l-19.8-19.8c-4.7-4.7-12.3-4.7-17 0L224 328.2 42.9 147.5c-4.7-4.7-12.3-4.7-17 0L6.1 167.3c-4.7 4.7-4.7 12.3 0 17l209.4 209.4c4.7 4.7 12.3 4.7 17 0l209.4-209.4c4.7-4.7 4.7-12.3 0-17z"/>'
}
FAQs
Svg loader for webpack
We found that fork-svg-loader 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 researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.