Base64 encodes web fonts to cache in LocalStorage for high performance.
Install this module globally and convert a web font from Google:
$ npm install -g font-store
$ font-store "http://fonts.googleapis.com/css?family=Dosis"
If all goes right, a JSON file will be created for you named something like fonts.<MD5>.woff.json
or fonts.<MD5>.woff2.json
.
To see a list of available options type:
$ font-store --help
Currently the only option is to specify what format you want, either woff or woff2.
You can read my article “Non-blocking web fonts using LocalStorage” or check out a demo on CodePen.