Package Exports
- google-font-family-downloader
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (google-font-family-downloader) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Google Font Downloader For Nodejs
Install
npm i google-font-family-downloader
Usage
import { join } from 'path';
import { downloadGoogleFontFamily } from 'google-font-family-downloader';
const FONTS_DIRECTORY = join(process.cwd(), `fonts`);
// some where else
const fonts = await downloadGoogleFontFamily('Roboto', FONTS_DIRECTORY);