Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ziaenezhad/download-google-font


https://github.com/ziaenezhad/download-google-font

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Google Font Downloader For Nodejs

## Install

```bash
npm i google-font-family-downloader
```

## Usage

```js
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);
```