Repository
Current version released
4 years ago
gwf
A Google web font downloader.
Now you can download them for self-hosted.
Requirement
Install
deno install \
--unstable \
--allow-net \
--allow-read \
--allow-write \
-n gwf \
https://deno.land/x/gwf/mod.ts
Usage
Select fonts in Google Fonts and copy the CSS URL from “Use on the web” block.
Execute the command to download the fonts and css to current directory:
gwf d "https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700&family=Noto+Sans+TC:wght@400;700&display=swap"
You can also download them to a specific dir:
gwf d "https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700&family=Noto+Sans+TC:wght@400;700&display=swap" \
-o relative/from/current/dir
gwf d "https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700&family=Noto+Sans+TC:wght@400;700&display=swap" \
-o /absolute/from/root
More options:
gwf d -h
Dev
Run with Deno@^1.9.2
deno run \
--unstable \
--allow-net \
--allow-read \
--allow-write \
mod.ts d "https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700&family=Noto+Sans+TC:wght@400;700&display=swap"
License
MIT