svgo-ll
v6.2.0
Published
svgo-ll is a Node.js library and command-line application for optimizing SVG images.
Downloads
150
Readme
svgo-ll 
svgo-ll is a Node.js library and command-line application for optimizing SVG files, evolved from the SVGO package. svgo-ll is focused on lossless optimization and compression. See the summary of differences between svgo-ll and SVGO for more details.
To experiment with svgo-ll and its options without installing it, you can use the webopt website to optimize files in your browser.
Why?
SVG files, especially those exported from vector editors, usually contain a lot of redundant information. This includes editor metadata, comments, hidden elements, default or suboptimal values, and other stuff that can be safely removed or converted without impacting rendering.
Installation
You can install svgo-ll globally through npm. Alternatively, drop the global flag (-g) to use it in your Node.js project.
# npm
npm install -g svgo-llCommand-line usage
To process a single file with the default settings for svgo-ll version 5:
svgo-ll -i one.svg -o one.min.svgFor more detailed options, see the command line option documentation or FAQ.
License and Copyright
This software is released under the terms of the MIT license.
