oxvg_collections 0.0.7

Collections of data and utilities about SVG
Documentation

Oxidised Vector Graphics (OXVG)

release npm crate discord wiki

OXVG is the fastest[^1] SVG toolchain for optimisation, linting, transformation, and manipulation. Usable via CLI and libraries for Node, WASM, or Rust.

Installation

cargo install oxvg

# View commands
oxvg --help
# Optimise an SVG
oxvg optimise < input.svg > output.svg

๐ŸŽฏ Tools

The following tools are available in a CLI binary.

๐Ÿชถ Optimiser

[!TIP] You can try out the OXVG optimiser right in your browser using OXVGUI, a simple web-based playground built by Jonas Geiler (@jonasgeiler).

An SVG optimiser similar to SVGO is available. It can run up to 50x faster, especially on larger file-sets.

The optimiser is based on and aims for compatibility with SVGO, but it isn't a 1-for-1 replacement. Some plugins may behave differently. See the SVGO parity guide to understand the differences and how to migrate your existing configuration.

# or `oxvg optimize`
cat my-file.svg | oxvg optimise > my-file.optimised.svg

https://github.com/user-attachments/assets/b2f54ab5-33de-44e4-aca5-3a269aae4dd6

๐Ÿค– Actions (Under Development[^2])

Actions are a set of commands that can be invoked by a program to manipulate an SVG document or pull information from it. It is comparable to Inkscape's actions, but without any dependency on the UI or rendering.

cat overlapping-paths.svg | oxvg action -- -select path -path-intersect > merged-paths.svg

๐Ÿงน Linter

A basic linter similar to svglint or vnu is available to make catching issues in SVG documents much easier. The linter can report SVG issues directly from the command line or through its language-server integration.

# Start language-server
oxvg lint serve
# Report diagnostics to stderr
oxvg lint check w3c/ -r

โš›๏ธ JSX

A JSX transformer to take SVG documents and transform them into JSX components, for use in React, Preact, Native, or any other JSX-compatible language.

This aims to implement SVGR as closely as possible.

cat my-file.svg | oxvg jsx --template template.jsx | prettier > my-file.svg.jsx

๐Ÿ“– Libraries

If you're a Rust developer wanting to work with SVGs in your project, we have a set of crates at your disposal.

OXVG's functionality is split into separate crates that can be used independently, depending whether you need to integrate DOM parsing/traversal, path handling, optimisation, manipulation, etc., into your project.

Actions (Unstable[^3])

Actions are programmatic commands for manipulating and inspecting SVG documents.

AST

This crate provides a set of types that can be used to implement a DOM similar to that of the browser web standards. Though it's not a 1-to-1 match; it's designed for easily traversing and manipulating the DOM.

There's currently an implementation that can be used with either the xml5ever or the roxmltree parser which can do the following.

  • Parse and serialise XML, SVG, and HTML documents
  • Commonly used browser API implementations for DOM nodes, elements, attributes, etc.
  • An implementation of selectors for using DOM CSS queries

Collections

This crate provides types for SVG content.

  • Parsing attributes into structured data
  • Enumerators for known elements, attributes, and namespaces

Optimiser

This is where the jobs (i.e. SVGO plugins) for our optimiser live and can also be used as a library for use in your applications.

Path (Unstable[^3])

This is a library for parsing, optimising, and serialising path definitions (e.g. <path d="..." />).

Please expect some instability as we may add new features to enable simple manipulations for paths in the future.

JSX

This is a library for parsing SVG, optimising, and transforming it into JSX modules.

Building

You can build the project for yourself by doing the following

git clone git@github.com:noahbald/oxvg.git
cd oxvg
cargo build --profile release --package oxvg --bin oxvg
# UNIX
./target/release/oxvg --help
# Windows
.\target\release\oxvg.exe --help

Or you can install it through cargo

cargo install oxvg
oxvg --help

Contributing

You're welcome to help out and pick up a good first issue or email me to help.

Contributing and architecture guides are available as well.


Inspiration and Thanks

Thank you to these high quality, open source projects on SVG tooling

  • SVGO
  • SVGR
  • Inkscape
  • Linebender

Thank you to these projects for helping make OXVG more popular

Licensing

OXVG is open-source and licensed under the MIT License

This project ports or copies code from other open-source (MIT) projects, listed below

  • SVGO
  • SVGR
  • OXC
  • Parcel
  • Kurbo

[^1]: Fastest I'm aware of; see benchmarks [^2]: CLI commands under development are safe to use but are either incomplete or likely to experience breaking changes in future. [^3]: Unstable libraries are either incomplete or likely to experience breaking changes in future.