𝑨 𝑱𝒂𝒗𝒂𝑺𝒄𝒓𝒊𝒑𝒕 𝒑𝒂𝒄𝒌𝒂𝒈𝒆 𝒕𝒉𝒂𝒕 𝒕𝒖𝒓𝒏 𝒂𝒍𝒑𝒉𝒂𝒏𝒖𝒎𝒆𝒓𝒊𝒄 𝒄𝒉𝒂𝒓𝒂𝒄𝒕𝒆𝒓𝒔 𝒊𝒏𝒕𝒐 𝒖𝒏𝒊𝒗𝒆𝒓𝒔𝒂𝒍 𝒘𝒆𝒊𝒓𝒅 𝒇𝒐𝒏𝒕 𝒔𝒕𝒚𝒍𝒆.
This is the core library for uniFonts.
npm install lib-unifonts --save // yarn add lib-unifonts
import { getAll as unifonts, fraktur } from 'lib-unifonts';
fraktur('The quick brown fox jumps over the lazy dog.', { fontStyle: 'bold' }); // 𝕿𝖍𝖊 𝖖𝖚𝖎𝖈𝖐 𝖇𝖗𝖔𝖜𝖓 𝖋𝖔𝖝 𝖏𝖚𝖒𝖕𝖘 𝖔𝖛𝖊𝖗 𝖙𝖍𝖊 𝖑𝖆𝖟𝖞 𝖉𝖔𝖌
// returns all fonts like this
unifonts(string): [{name: string, value: string}, ...]
- A lot more fonts.
- Creating/Adding new fonts is a breeze. (see ./script/instructions)
- Auto generates unit test for each font added.
- Ability to get all fonts with their respective name.
I'm open to any kind of contribution.
- Make sure you have prettier set up