Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thoughtspile/unfont
Render Font Awesome to static HTML. No JS runtime, no webpack.
https://github.com/thoughtspile/unfont
ejs fontawesome icons svg
Last synced: about 2 hours ago
JSON representation
Render Font Awesome to static HTML. No JS runtime, no webpack.
- Host: GitHub
- URL: https://github.com/thoughtspile/unfont
- Owner: thoughtspile
- License: mit
- Created: 2021-05-23T08:02:27.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-05-24T08:58:18.000Z (over 3 years ago)
- Last Synced: 2024-10-28T14:58:30.308Z (18 days ago)
- Topics: ejs, fontawesome, icons, svg
- Language: JavaScript
- Homepage: https://npm.im/unfont
- Size: 154 KB
- Stars: 19
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# unfont
Embed Font Awesome icons into HTML with inline SVG:
- __Zero runtime JS__
- __No webpack__ required
- __Instantly__ displays icons during page load
- Up to 10x (–12.5KB) __smaller__ than the [SVG + JS core](https://fontawesome.com/how-to-use/on-the-web/advanced/svg-javascript-core)
- Every HTML page loads just the icons it needs
- Streaming HTML support
- [Inline styles option](#inline-styles-mode) for even smaller bundles
- Works with any node-based templating.[Font awesome](https://fontawesome.com/) now has 1600+ icons in the free pack, pushing the bundle to ~200K — a lot of code to only use a couple of icons. It also takes a while to load, and the icons are not rendered while it's loading. Font awesome's [SVG + JS core](https://fontawesome.com/how-to-use/on-the-web/advanced/svg-javascript-core) is a JS runtime that dynamically replaces `` with inline SVG. Smart, but extra 40K (13K gzip) of JS is not always welcome, and still leaves your users with missing icons during script load.
As a lightweight alternative, I made this package that renders font awesome icons into inline SVG during HTML generation. It comes with the standard tradeoffs of inline SVG (no caching), but works well for static HTML websites, and is a perfect fit for critical content.
## Table of Contents
- [Basic usage](#basic-usage)
- [Inline styles mode](#inline-styles-mode)
- [Comparison with standard FA runtimes](#comparison-with-standard-fa-runtimes)
- [Alternative designs](#why-not)
- [License](#license)## Basic usage
> Play around with unfont in the [sandbox](https://codesandbox.io/s/unfont-demo-jf0y2?file=/src/index.js) (but please don't use it client-side)
Install:
```sh
$ npm i --save unfont
$ yarn add unfont
```Import CSS into your styles bundle (it's just copied over from `@fortawesome/fontawesome-svg-core`, no need to duplicate if you already run SVG + JS runtime):
```css
@import 'unfont/css/fs.css';
```You can also import it from JS or `` to it as per your build setup.
Use in your template:
```js
const { fa } = require('unfont');// instead of
fa('fab fa-twitter'); // returns inline SVG to directly put into your HTML
```Add custom classes:
```js
fa('fas fa-camera fa-2x'); //
fa('fas fa-camera block__icon'); //
```Add attributes:
```js
fa('fas fa-camera', {
attributes: { 'id': 'camera-icon' }
});
//
```Add inline styles:
```js
fa('fas fa-camera', {
styles: { 'color': 'red' }
});
//
```__Dynamic node SSR__ (express & co) should work out of the box, but make sure to run your own performance / load tesing and cache as needed, since it's not a primary use case and rendering may be expensive.
__Client-side use__ makes no sense. If you really have to, try rendering icons for dynamic display into a hidden container and using their innerHTML. Never import unfont js into your client bundle.
## Inline styles mode
If you only use a few `fa-` utility classes here and there, or rely on inline styles for critical content, you can opt into inline styles mode with `inlineCss` option:
```js
fa('fas fa-camera fa-2x', { inlineCss: true })
//
```This works by statically evaluating font-awesome styles for the given class and should support all `fa-*` utility classes and respect the `styles` option. The downside is that you can only override the styles with `!important` or more inline `styles`, so existing styling might break.
To use `fa-spin` or `fa-pulse`, include `unfont/css/faSpin.css` for the `@keyframes`. These styles can also be inlined into a `` tag using a string exported from `require('unfont').faSpinCss`. It's a tiny CSS of 376 (120 gzip) bytes.
## Comparison with standard FA runtimes
A [benchmark](./benchmark) with 10 icons produces the following bundles (all sizes in K):
| | unfont inlineCss | unfont | FA SVG + JS | FA font |
|----------------|------------------|---------------|-----------------|----------------|
| HTML (gz) | 9.3 (3.0) | 6.2 (2.9) | 0.5 (0.3) | 0.5 (0.3) |
| CSS (gz) | | 7.8 (1.4) | | 60 (13) |
| JS (gz) | | | 43.2 (15.1) | |
| Woff2 | | | | 168 |
| __Total (gz)__ | __9.3 (3.0)__ | __14 (4.3)__ | __43.7 (15.3)__ | __228 (182)__ |- Default `unfont` bundle is 3.5 times smaller than SVG + JS core version. No matter how many icons you have, you get rid of the 12.5K gz JS runtime.
- Comparison with the font version is not even fair (50x difference).
- `inlineCss` version is another 1.5 times smaller than the default, or only 20% of SVG + JS core.
- Unfont displays the icons instantly, while both fa versions have a gap when the icons are missing.
- Both `unfont` setups generate 2.5K extra HTML, which is fine.In a Slow 3G + 6x CPU Slowdown emulation without cache, icons are displayed @ 11s for font, 5s SVG + JS core, 4s unfont base, 2s unfont inlineCss. `unfont` only shows the page once the icons are ready, so no FOUC.
## Why not...
- `<img src="...">` / `background-image: url(...)` generate a request per icon, have FOUC while loading, and are difficult to style.
- __CSS data-URI__ is difficult to style, which is a pity. Also, interpolating JS calls into CSS is tricky.
- __Directly imported FA SVG__ can not add attributes and classes. Also, importing SVG from dynamic path in node is tricky.
- __SVG sprite in HTML__ reduces raw HTML size, bu gzip already handles SVG duplication well. I have not seen a significant change in FCP / FMP when applying this technique. Also, harder to manage, and prevents streaming HTML in dynamic SSR.
- __Remote SVG sprite__ sounds like a decent option, but I need too investigate further regarding FOUC & actual performance.## License
Built by Vladimir Klepov [@thoughtspile](https://thoughtspile.github.io)
[MIT License](./LICENSE)