
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
The is-svg npm package is used to check if a given string or buffer is an SVG (Scalable Vector Graphics) image. It's particularly useful in scenarios where you need to validate input files or data to ensure they are SVGs before processing them further. This can help in avoiding errors or security issues when working with image processing or rendering functionalities.
Check if a string is SVG
This feature allows you to check if a string is valid SVG. It's useful when you have SVG data as a string and need to verify its validity before using it.
"const isSvg = require('is-svg');\n\nconst svgString = '<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><circle cx=\"50\" cy=\"50\" r=\"40\"/></svg>';\nconsole.log(isSvg(svgString)); // true"
Check if a Buffer is SVG
This feature enables you to check if a Buffer (for example, read from a file) contains SVG data. It's particularly useful for file validation in upload forms or file processing systems.
"const isSvg = require('is-svg');\nconst fs = require('fs');\n\nconst svgBuffer = fs.readFileSync('image.svg');\nconsole.log(isSvg(svgBuffer)); // true or false based on the file content"
The image-type package can identify the type of an image by examining its buffer. It supports various image formats, including SVG. Compared to is-svg, image-type offers broader functionality for multiple image formats but might be overkill if you only need to validate SVGs.
Similar to image-type, file-type goes beyond images and can determine the type of many different files, including images, videos, fonts, and more. It's more comprehensive than is-svg, which is focused solely on SVG validation.
Check if a string is SVG
npm install is-svg
import isSvg from 'is-svg';
isSvg('<svg xmlns="http://www.w3.org/2000/svg"><path fill="#00CD9F"/></svg>');
//=> true
FAQs
Check if a string is SVG
The npm package is-svg receives a total of 1,375,457 weekly downloads. As such, is-svg popularity was classified as popular.
We found that is-svg demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.