Gathering detailed insights and metrics for postcss-svgo
Gathering detailed insights and metrics for postcss-svgo
Gathering detailed insights and metrics for postcss-svgo
Gathering detailed insights and metrics for postcss-svgo
@applaud/postcss-svgo
Optimise inline SVG with PostCSS.
postcss-svgo-nightly
Optimise inline SVG with PostCSS.
angular-webpack-transformer
This plugin allows you to asynchronously change the configuration of the angular webpack
markdown-email
An easy button for creating HTML emails from Markdown
A modular minifier, built on top of the PostCSS ecosystem.
npm install postcss-svgo
Typescript
Module System
Min. Node Version
Node Version
NPM Version
96.2
Supply Chain
99.5
Quality
89.8
Maintenance
100
Vulnerability
100
License
CSS (77.36%)
JavaScript (22.18%)
Nunjucks (0.46%)
Total Downloads
3,002,231,293
Last Day
2,304,839
Last Week
12,012,774
Last Month
49,052,864
Last Year
557,047,845
MIT License
4,859 Stars
2,557 Commits
321 Forks
48 Watchers
43 Branches
112 Contributors
Updated on May 12, 2025
Minified
Minified + Gzipped
Latest Version
7.0.2
Package Id
postcss-svgo@7.0.2
Unpacked Size
10.38 kB
Size
4.78 kB
File Count
10
NPM Version
10.8.2
Node Version
20.19.1
Published on
May 06, 2025
Cumulative downloads
Total Downloads
2
1
2
Optimise inline SVG with PostCSS.
With npm do:
npm install postcss-svgo --save
1h1 { 2 background: url('data:image/svg+xml;charset=utf-8,<?xml version="1.0" encoding="utf-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"><circle cx="50" cy="50" r="40" fill="yellow" /></svg>'); 3} 4 5h2 { 6 background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PGNpcmNsZSBjeD0iNTAiIGN5PSI1MCIgcj0iNDAiIGZpbGw9InllbGxvdyIgLz48IS0tdGVzdCBjb21tZW50LS0+PC9zdmc+'); 7}
1h1 { 2 background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="%23ff0"/></svg>'); 3} 4 5h2 { 6 background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjQwIiBmaWxsPSIjZmYwIi8+PC9zdmc+'); 7}
svgo([options])
Type: boolean
Default: undefined
If true
, it will encode URL-unsafe characters such as <
, >
and &
;
false
will decode these characters, and undefined
will neither encode nor
decode the original input. Note that regardless of this setting, #
will
always be URL-encoded.
Optionally, you can customise the output by specifying the plugins
option. You
will need to provide the config in comma separated objects, like the example
below. Note that you can either disable the plugin by setting it to false
,
or pass different options to change the default behaviour.
1const postcss = require('postcss'); 2const svgo = require('postcss-svgo'); 3 4const opts = { 5 plugins: [{ 6 name: 'preset-default', 7 params: { 8 overrides: { 9 removeViewBox: false, 10 removeComments: false, 11 cleanupNumericValues: { 12 floatPrecision: 2 13 } 14 } 15 } 16 }] 17}; 18 19 20postcss([ svgo(opts) ]).process(css).then((result) => { 21 console.log(result.css) 22});
You can view the full list of plugins here.
See the PostCSS documentation for examples for your environment.
See CONTRIBUTORS.md.
MIT © Ben Briggs
No vulnerabilities found.
Reason
15 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
GitHub workflow tokens follow principle of least privilege
Details
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
packaging workflow detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 8
Details
Reason
2 existing vulnerabilities detected
Details
Reason
Found 5/22 approved changesets -- score normalized to 2
Reason
security policy file not detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-05-12
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn MoreLast Day
1.8%
2,304,839
Compared to previous day
Last Week
14%
12,012,774
Compared to previous week
Last Month
-0.7%
49,052,864
Compared to previous month
Last Year
3.4%
557,047,845
Compared to previous year