@atlowchemi/webfont-generator
A native Rust NAPI addon that generates webfonts (SVG, TTF, EOT, WOFF, WOFF2) and their companion CSS/HTML from a set of SVG icon files.
This is a ground-up rewrite of @vusion/webfonts-generator in Rust — the original package and its authors deserve credit for the API design and template system that this project builds on. The JS implementation is unmaintained, so this package reimplements the same pipeline natively for better performance and long-term maintainability.
The API is largely compatible with @vusion/webfonts-generator, with a few differences:
- The
cssContextandhtmlContextcallbacks receive only the context object. The original also passedoptionsand thehandlebarsinstance as additional arguments — those are no longer available. - Generated font binaries (TTF, WOFF, etc.) may differ at the byte level because a different encoder is used, but the fonts are equally valid.
- CSS, HTML, and template output is identical.
Performance scales better with glyph count — for larger icon sets the native pipeline is significantly faster.
Node.js (npm)
Pre-built binaries are published for the following targets:
| Platform | Architecture |
|---|---|
| macOS | x64, arm64 |
| Linux (glibc) | x64, arm64, armv7 |
| Linux (musl) | x64, arm64 |
| Windows (MSVC) | x64, arm64 |
import from '@atlowchemi/webfont-generator';
const result = await ;
const css = result.;
const html = result.;
Rust library (crates.io)
use ;
let result = generate_sync.unwrap;
let css = result.generate_css_pure.unwrap;
An async API (webfont_generator::generate) is also available for use with tokio.
CLI
The CLI is available as an opt-in feature (to avoid pulling in clap for library users):
Usage
webfont-generator [OPTIONS] --dest <DEST> <FILES>...
Examples
# Generate default formats (eot, woff, woff2) from a directory of SVGs
# Generate specific formats with a custom font name
# Generate fonts with an HTML preview page
Options
Arguments:
... SVG files or directories containing SVG files
Options:
-d, --dest Output directory
-n, --font-name Font name [default: iconfont]
-t, --types Font types to generate [possible values: svg, ttf, eot, woff, woff2]
--css Generate CSS (default)
--no-css Skip CSS generation
--html Generate HTML preview
--no-html Skip HTML generation (default)
--css-template Custom CSS template path
--html-template Custom HTML template path
--css-fonts-url CSS fonts URL prefix
--write Write output files to disk (default)
--no-write Do not write output files (dry run)
--ligature Enable ligatures (default)
--no-ligature Disable ligatures
--font-height Font height
--ascent Ascent value
--descent Descent value
--start-codepoint Start codepoint (hex, e.g. 0xF101)
-h, --help Print help
-V, --version Print version
Templates
Default CSS, SCSS, and HTML templates are available via the /templates export:
import from '@atlowchemi/webfont-generator/templates';
console.log; // path to default CSS template
console.log; // path to default SCSS template
console.log; // path to default HTML template