This app makes writing in the Tyeif script simpler; instead of needing to install it as a custom font on the computer, it is loaded as a web font (WOFF) and can be used in the browser. The original TrueType font was converted to WOFF using cloudconvert.
A straightforward HTML view. Interactivity with vanilla JS (transpiled from the Typescript). The styling uses Bulma.
├── public/
│ ├── index.html View
│ ├── assets/ View assets
│ │ ├── fonts/
│ │ ├── images/
│ │ └── styles/
│ └── modules/ App build, imported in index.html view
└── src/ App source
└── app.ts
npm install
installs Typescript and ES Module Shims and copies the shims to the modules/
(build) directory.
Run the TS build (with npm run build
or npm run watch
) to output the app to modules/
You will need a simple server to run locally. The Deno std/http file server makes this very easy, i.e. after installing it just run file_server .
in the directory then open the URL in the browser.