Helium is a fast XML toolkit for Go covering XML parsing, SAX2-style streaming, XPath 3.1, XSLT 3.0, XInclude, XSD, Relax NG, and Schematron.
The root helium package handles parsing, DOM building, and serialization, but
the module is broader than an XML parser. It also includes
xpath3 for XPath 3.1 querying and
xslt3 for XSLT 3.0 transformations, alongside
xpath1 for XPath 1.0 compatibility,
xsd, relaxng, and
schematron for validation,
xinclude for inclusion processing,
c14n for canonicalization,
html for HTML parsing, and
shim for encoding/xml-compatible APIs.
It started as an effort to port libxml2-style capabilities to Go, but grew broader native Go APIs along the way. The goal is to provide a full Go XML stack for parsing, querying, transforming, and validating documents, with each major feature area documented in its own package README.
package examples_test
import (
"context"
"fmt"
"github.com/lestrrat-go/helium"
)
func Example_helium_parse() {
// helium.NewParser().Parse is the simplest way to parse an XML document from a byte slice.
// It returns a *helium.Document representing the parsed DOM tree.
doc, err := helium.NewParser().Parse(context.Background(), []byte(`<root><child>hello</child></root>`))
if err != nil {
fmt.Printf("failed to parse: %s\n", err)
return
}
// WriteString serializes the entire document back to an XML string,
// including the XML declaration (<?xml version="1.0"?>).
s, err := helium.WriteString(doc)
if err != nil {
fmt.Printf("failed to serialize: %s\n", err)
return
}
fmt.Println(s)
// Output:
// <?xml version="1.0"?>
// <root><child>hello</child></root>
}source: examples/helium_parse_example_test.go
Each public subpackage has its own README.md with package-specific details and
an embedded example.
| Package | Description | Notes |
|---|---|---|
c14n |
W3C Canonical XML support. | C14N 1.0, exclusive C14N 1.0, and C14N 1.1. |
catalog |
OASIS XML Catalog loading and resolution. | Useful with parsers, validators, and external resources. |
enum |
Shared typed enums for DTD declarations. | Low-level support package; no standalone example. |
html |
HTML parser and serializer on top of helium nodes. | Produces helium DOM nodes or SAX-style events. |
relaxng |
RELAX NG compilation and validation. | Schema compile step plus document validation. |
sax |
SAX2 handler interfaces and helpers. | Event-driven parsing surface used by helium and html. |
schematron |
Schematron compilation and validation. | Rule-based XML validation with XPath assertions. |
shim |
encoding/xml-compatible API backed by helium. |
Import-path swap for existing stdlib-style code. |
sink |
Generic async event sink. | Also satisfies helium.ErrorHandler when T is error. |
stream |
Streaming XML writer. | Writes XML directly without building a DOM. |
xinclude |
XInclude processing for helium documents. | Supports recursive inclusion and custom resolvers. |
xmldsig1 |
W3C XML Digital Signatures 1.1 over helium documents. | Scoped production support for explicit same-document profiles; external references and XSLT are opt-in advanced features. |
xmlenc1 |
W3C XML Encryption 1.1 over helium documents, except for Triple DES. | Experimental; API may change. Triple DES is refused deliberately, so block encryption and key wrapping are AES only. |
xpath1 |
XPath 1.0 compilation and evaluation. | Includes convenience helpers like Find and Evaluate. |
xpath3 |
XPath 3.1 compilation and evaluation. | Includes a compiler, evaluator, maps, arrays, and HOFs. |
xpointer |
XPointer evaluation. | Supports shorthand, element(), and XPath-backed schemes. |
xsd |
XML Schema compilation and validation. | XSD 1.0 (default) and opt-in XSD 1.1 compiler plus validator APIs. |
xslt3 |
XSLT 3.0 stylesheet compilation and execution. | Targets Basic XSLT 3.0 conformance. |
The command-line interface is exposed as helium.
Currently implemented subcommands: lint, xpath, xslt, xsd validate, relaxng validate, schematron validate.
Use helium lint in place of the old heliumlint command.
| Command | Purpose |
|---|---|
helium lint |
Parse and lint XML documents |
helium xpath |
Evaluate XPath expressions against XML input |
helium xslt |
Transform XML with XSLT 3.0 stylesheets |
helium relaxng validate |
Validate XML documents against a RELAX NG schema |
helium schematron validate |
Validate XML documents against a Schematron schema |
helium xsd validate |
Validate XML documents against an XML Schema |
See cmd/helium/README.md for command-specific
documentation.
NewParser() is secure by default — it is safe to point at untrusted XML
with no extra configuration. By default:
- External entity and DTD loading is blocked (
BlockXXE(true)), so XML External Entity (XXE) attacks are rejected. - No filesystem is exposed: the parser's
FSis a deny-all filesystem, so even a document that reaches a loader cannot open host paths. - Network access is forbidden (
AllowNetwork(false)). The core parser has no network loader, so this is belt-and-suspenders. - Element nesting depth is capped at 256 (
MaxDepth(256);0selects the 256 default, a negative value removes the cap). - Entity substitution and external DTD loading are off
(
SubstituteEntities(false),LoadExternalDTD(false)); the entity-expansion amplification, name-length, and content-model-depth guards are at their defaults (MaxEntityAmplification,MaxNameLength,MaxContentModelDepth); and any external DTD subset — once explicitly enabled — is capped at 10 MiB.
The builder is clone-on-write, so one configured parser is safe to reuse across goroutines.
To deliberately load external resources from a trusted source, opt back in explicitly:
doc, err := helium.NewParser().
BlockXXE(false). // allow external entities and DTDs
LoadExternalDTD(true). // read the external DTD subset
SubstituteEntities(true). // expand entities
FS(helium.PermissiveFS()). // open any os.Open path (or pass a confined fs.FS)
Parse(ctx, xmlBytes)helium.PermissiveFS() returns an fs.FS that opens any path via os.Open,
restoring the historical unsandboxed behavior; prefer a confined fs.FS rooted
at a trusted directory when the document's external references are known.
Passing FS(nil) restores the deny-all default.
The parser cannot know your resource budget, so even with the safe defaults the caller should also:
- Enforce a maximum raw document size before calling
Parse. - Pass a
context.Contextwith a deadline toParse/ParseReader. - Leave the entity-amplification, name-length, and content-model-depth limits
at their defaults — passing a negative value to
MaxEntityAmplification,MaxNameLength, orMaxContentModelDepthremoves that guard. - Be cautious enabling XInclude, catalogs, DTD validation, or
default-DTD-attribute processing for untrusted input; when you do, keep every
external resource allowlisted and size-bounded. The
xincludeprocessor is also secure by default — with no resolver configured it denies all filesystem access; grant access withResolver(xinclude.NewFSResolver(fsys))backed by a confinedfs.FS(os.Root.FS), or restore historical OS-path access withxinclude.NewFSResolver(helium.PermissiveFS()).xinclude.Processor.MaxIncludeDepthbounds the nesting depth of included documents, andMaxIncludeSizecaps the bytes read per included resource.
The xsd schema compiler is likewise secure by default: xsd.NewCompiler()
denies all nested-schema filesystem access, so an untrusted schema cannot
disclose local files or exhaust resources through a hostile
xs:include/xs:import/xs:redefine schemaLocation. Each nested schema is
read through a fixed byte cap regardless of the fs.FS in use. Opt into host
access with Compiler.FS(helium.PermissiveFS()) or a confined fs.FS;
Compiler.FS(nil) restores the deny-all default.
Confining the loader: external-resource references are resolved against the
document base URI into an absolute name. The parser hands that name to the FS
first, then — if an fs.ValidPath-enforcing FS rejects it — retries with the
name made relative to the document's directory, so a confined fs.FS rooted at
that directory (os.DirFS, os.Root.FS) resolves the reference. The retry is a
validated fs.ValidPath, which blocks ../ and absolute-path escape above the
root. It does not confine symlinks: os.DirFS follows an in-root symlink out
of its root. For symlink-safe confinement, prefer os.Root.FS (os.OpenRoot,
Go 1.24+), which refuses any open that escapes the root through a symlink. A
network-scheme name is refused before it reaches the FS.
The xmldsig1 package supports narrow, explicit same-document verification
profiles when the application pins its trusted key or certificate source and
checks VerifyResult.Covers before consuming a signed element. External
references and XSLT remain opt-in advanced features with caller-owned resource
and execution policy. The xmlenc1 package remains experimental and should
not be relied on inside a security or compliance boundary.
The shim package is an import-path-compatible replacement
for encoding/xml backed by helium's parser (Marshal, Unmarshal,
Encoder, Decoder, and the usual struct tags). It is a migration aid, not a
byte-for-byte behavioral clone. Known differences:
Decoder.Strict = falseis not supported;Decoder.AutoCloseis a no-op andHTMLAutoCloseis omitted.- Undeclared namespace prefixes are rejected at parse time.
- Namespace declarations are emitted before regular attributes.
Decoder.InputOffsetis approximate.- Empty elements captured via
,innerxmlmay re-serialize as self-closed tags.
Migrate behind your own tests, and treat the swap as a change in behavior.
Helium parses XML into a full DOM tree. The benchmark below compares that DOM
build against two lower-level baselines: an encoding/xml token loop
(Decoder.Token) and libxml2 via cgo.
That is a narrower benchmark than every real encoding/xml workload. Many Go
programs use encoding/xml to decode directly into structs, and this section is
not meant to dismiss that use case or the package. The point here is simply
that Helium's DOM parse is already quite fast: it is materially faster than the
stdlib token benchmark on all three corpora, it now edges past libxml2 on the
medium corpus, and it is clearly ahead on the largest corpus.
Benchmarks parse real-world XML files of varying sizes (AMD Ryzen 9 7900X3D,
Go 1.26.1, go test -run '^$' -bench 'Benchmark(HeliumParse|StdlibXMLDecode|Libxml2Parse)$' -benchmem -count=5 -tags libxml2bench ./bench,
median shown):
| File | Helium | encoding/xml |
libxml2 (cgo) |
|---|---|---|---|
| 109 KB | 139 MB/s | 77 MB/s | 158 MB/s |
| 196 KB | 124 MB/s | 66 MB/s | 109 MB/s |
| 3 MB | 497 MB/s | 120 MB/s | 366 MB/s |
Helium also allocates far fewer objects than encoding/xml in this benchmark.
On the 3 MB corpus, the current Helium DOM parse lands around 94 allocs/op
versus about 155k allocs/op for encoding/xml.
To run the benchmarks yourself:
go test -bench='BenchmarkHeliumParse|BenchmarkStdlibXMLDecode' -benchmem ./bench/
# Include libxml2 (requires cgo and libxml2-dev):
go test -tags cgo,libxml2bench -bench=. -benchmem ./bench/
- Implemented: XML/HTML parsing, DOM building, SAX2, XPath 1.0, XPath 3.1, Basic XSLT 3.0, XInclude, C14N, RELAX NG, Schematron, XSD, XML Catalog, streaming XML writer, and
encoding/xmlcompatibility (shimpackage). - Scoped production support: W3C XML Digital Signatures 1.1 (
xmldsig1) for explicit same-document verification profiles. External references and XSLT are opt-in advanced features with caller-owned resource and execution policy. - Experimental: XML Encryption 1.1 (
xmlenc1), except for Triple DES, which it refuses deliberately even though the specification marks it REQUIRED; block encryption and key wrapping are AES only. Its API may change and may move to a separate repository. - CLI: the
heliumcommand provideslint,xpath,xslt,xsd validate,relaxng validate, andschematron validatesubcommands.
Some edge cases and parity gaps are still being iterated on; contributions and issue reports are welcome.
Each row links to the package's README (for scope and details) and its committed, point-in-time evidence. The summaries carry the generated date, pinned upstream suite revision, pass/skip/xfail/fail counts, and skip and expected-failure (documented known gap) breakdowns where applicable.
| Suite | Package | Evidence |
|---|---|---|
| XML 1.0 (parser + validity) | core parser | summary |
| XPath 3.1 (QT3) | xpath3 |
summary |
| XSLT 3.0 | xslt3 |
summary, conformance declaration |
| XSD 1.0 (default) | xsd |
summary |
| XSD 1.1 (opt-in) | xsd |
summary |
| C14N 1.1 + XMLDSig interop (xmldsig2ed-tests) | xmldsig1 |
summary |
| XML Signature 1.1 interop | xmldsig1 |
summary |
| XMLDSig 1.0 baseline (merlin-xmldsig-twenty-three) | xmldsig1 |
summary |
| XML Encryption 1.1 interop | xmlenc1 |
summary |
| Core XML | XSD | RELAX NG | Schematron | C14N | HTML |
|---|---|---|---|---|---|
| 100% | 99.6% | 100% | 100% | 100% | 100% |
XSLT support is intentionally scoped to Basic XSLT 3.0. Backwards-compatible processing (XSLT 1.0 semantics + XPath 1.0 compatibility mode, enabled per element when the effective version is below 2.0) is implemented and in scope; only XSLT 1.0/2.0 syntax support is out of scope.
If you are an AI coding agent (Claude Code, Codex, Gemini, etc.) working in this
repository, start with AGENTS.md (also available as CLAUDE.md).
It points to the cached navigation and architecture docs under
.claude/docs/ and lists the pre-read rules, scope boundaries,
and generated-file policy you must follow before making changes.
Runnable usage examples live in the examples/ directory as
*_example_test.go files — read those first to see how the public APIs are meant
to be used.
For bug reports and feature requests, please follow the issue template when possible. If you can include a minimal reproduction or failing test case, that helps a lot.
Please include tests that cover your changes.
If your change touches generated files, update the generator/source first, regenerate, and commit both the source and generated outputs together.
Please keep pull requests focused and small enough to review quickly.
For usage questions, design discussion, or "is this approach reasonable?" questions, please open a GitHub Discussion first.