UNPKG

@web-alchemy/fonttools

Version:

This is the Node.js adapter of [python font tools](https://github.com/fonttools/fonttools) via [Pyodide](https://pyodide.org) without having to install python and its dependencies.

8 lines (6 loc) 175 B
const { createPyodide, installPackages } = require('../pyodide.js') async function main() { const pyodide = await createPyodide() await installPackages(pyodide) } main()