{"id":16830811,"url":"https://github.com/jpillora/webfont-downloader","last_synced_at":"2025-04-11T04:11:41.142Z","repository":{"id":20885486,"uuid":"24172779","full_name":"jpillora/webfont-downloader","owner":"jpillora","description":"A small web service which converts webfonts into zip archives","archived":false,"fork":false,"pushed_at":"2015-07-10T09:34:17.000Z","size":1277,"stargazers_count":22,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-11T04:11:37.200Z","etag":null,"topics":["css","fonts","googlefonts","webfonts"],"latest_commit_sha":null,"homepage":"https://fonts.jpillora.com/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jpillora.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-09-18T03:39:03.000Z","updated_at":"2025-03-10T06:48:45.000Z","dependencies_parsed_at":"2022-09-13T22:00:52.542Z","dependency_job_id":null,"html_url":"https://github.com/jpillora/webfont-downloader","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpillora%2Fwebfont-downloader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpillora%2Fwebfont-downloader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpillora%2Fwebfont-downloader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jpillora%2Fwebfont-downloader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jpillora","download_url":"https://codeload.github.com/jpillora/webfont-downloader/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248339224,"owners_count":21087215,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","fonts","googlefonts","webfonts"],"created_at":"2024-10-13T11:41:10.018Z","updated_at":"2025-04-11T04:11:41.125Z","avatar_url":"https://github.com/jpillora.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Webfont Downloader\n\nEasily download Google Webfonts as a zip file. Useful for offline development. Recently ported from [Node to Go](https://github.com/jpillora/webfont-downloader/commit/54c7ab29500acebad9c3523e7738402a7a7ff6c9).\n\n## Usage\n\n1. Given the Google Webfonts CSS file:\n\n\thttps://fonts.googleapis.com/css?family=Open+Sans\n\n2. Just change `googleapis` in the URL to `jpillora`:\n\n\thttps://fonts.jpillora.com/css?family=Open+Sans\n\n3. It should begin to download an `OpenSans.zip` file\n\n4. Use it with:\n\n\t``` html\n\t\u003clink rel=\"stylesheet\" href=\"./path/to/my/local/css/OpenSans/OpenSans.css\"\u003e\n\t```\n\n## Examples\n\n* Default styles: https://fonts.jpillora.com/css?family=Noto+Sans\n\n* Include all styles: https://fonts.jpillora.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800\n\n## API\n\n### `/\u003ctype\u003e/css?family=\u003cfont:styles\u003e`\n\nCreates a zip archive of `font` family provided, including each of the `styles` listed.\n\nThe `type` param is optional and can be one of `ttf`, `woff` (default),`woff2`, `eot` or `detect` (chooses the best type for your browser).\n\n## CLI Usage\n\n``` sh\nwget --content-disposition 'https://fonts.jpillora.com/css?family=\u003cyour-font-here\u003e'\n# or\ncurl 'https://fonts.jpillora.com/css?family=\u003cyour-font-here\u003e' \u003e /tmp/font.zip\n```\n\n*https://fonts.jpillora.com was deployed using the button below*\n\n## Deploy your own\n\n[![Deploy](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy)\n\n## Local Usage\n\n``` sh\n$ # install go\n$ go get github.com/jpillora/webfont-downloader\n$ webfont-downloader\nListening on 3000...\n```\n\n## FAQ\n\n#### Google already has this service available\n\nIt does, though it provides you with **only** the `.ttf` files. This also service downloads\n`.woff` and `.eof` files and creates a local version of the one-line include CSS file.\n\n#### MIT License\n\nCopyright © 2014 Jaime Pillora \u0026lt;dev@jpillora.com\u0026gt;\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjpillora%2Fwebfont-downloader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjpillora%2Fwebfont-downloader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjpillora%2Fwebfont-downloader/lists"}