{"id":13508379,"url":"https://github.com/ianwalter/imgex","last_synced_at":"2026-03-17T09:33:14.122Z","repository":{"id":2900286,"uuid":"47834342","full_name":"ianwalter/imgex","owner":"ianwalter","description":"An Elixir client library for generating image URLs with imgix","archived":false,"fork":false,"pushed_at":"2024-11-05T20:36:40.000Z","size":96,"stargazers_count":33,"open_issues_count":0,"forks_count":9,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-11-08T22:12:36.824Z","etag":null,"topics":["elixir","imgix"],"latest_commit_sha":null,"homepage":"","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ianwalter.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"ianwalter"}},"created_at":"2015-12-11T15:29:34.000Z","updated_at":"2024-11-05T20:36:41.000Z","dependencies_parsed_at":"2025-01-19T07:19:28.134Z","dependency_job_id":null,"html_url":"https://github.com/ianwalter/imgex","commit_stats":{"total_commits":36,"total_committers":10,"mean_commits":3.6,"dds":0.5833333333333333,"last_synced_commit":"81b4b5405f0926888d4250cb8e9f3f04539d13ec"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/ianwalter/imgex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianwalter%2Fimgex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianwalter%2Fimgex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianwalter%2Fimgex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianwalter%2Fimgex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ianwalter","download_url":"https://codeload.github.com/ianwalter/imgex/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianwalter%2Fimgex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30620740,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T08:10:05.930Z","status":"ssl_error","status_checked_at":"2026-03-17T08:10:04.972Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["elixir","imgix"],"created_at":"2024-08-01T02:00:52.271Z","updated_at":"2026-03-17T09:33:14.108Z","avatar_url":"https://github.com/ianwalter.png","language":"Elixir","funding_links":["https://github.com/sponsors/ianwalter"],"categories":["Images"],"sub_categories":[],"readme":"\u003c!-- ix-docs-ignore --\u003e\n# imgex\n\u003e An Elixir client library for generating image URLs with imgix\n\n[![CI](https://github.com/ianwalter/imgex/actions/workflows/ci.yml/badge.svg)](https://github.com/ianwalter/imgex/actions/workflows/ci.yml)\n[![Module Version](https://img.shields.io/hexpm/v/imgex.svg)](https://hex.pm/packages/imgex)\n[![Hex Docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/imgex/)\n[![Total Download](https://img.shields.io/hexpm/dt/imgex.svg)](https://hex.pm/packages/imgex)\n[![License](https://img.shields.io/hexpm/l/imgex.svg)](https://github.com/ianwalter/imgex/blob/master/LICENSE.md)\n[![Last Updated](https://img.shields.io/github/last-commit/ianwalter/imgex.svg)](https://github.com/ianwalter/imgex/commits/master)\n\n\u003c!-- /ix-docs-ignore --\u003e\n\n- [Installation](#installation)\n- [Documentation](#documentation)\n- [Configuration](#configuration)\n- [Usage](#usage)\n\n## Installation\n\nimgex is [available in Hex](https://hex.pm/packages/imgex), the package can be\ninstalled as:\n\nAdd `:imgex` to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [\n    {:imgex, \"~\u003e 0.2.0\"},\n  ]\nend\n```\n\n## Documentation\n\nThe source is really small so reading through it should be straight-forward but\nthe full package documentation is available at https://hexdocs.pm/imgex.\n\n## Configuration\n\nTo use the library you have to configure your imgix domain and secure token or\npass them as an options map `%{domain: \"domain\", token: \"token\"}` as the\nthird parameter to `Imgex.url/3` or `Imgex.proxy_url/3`.\nSee `config/test.exs` for an example of how to configure this.\n\n## Usage\n\nTo generate an imgix URL based on a path (Web Folder and S3 sources) and\noptional parameters do:\n\n```elixir\nurl = Imgex.url \"/images/cats.jpg\", %{w: 700}\n```\n\nTo generate an imgix URL based on a public URL (Web Proxy sources) and optional\nparameters do:\n\n```elixir\nurl = Imgex.proxy_url \"https://some-public-url.com/cats.jpg\", %{w: 700}\n```\n\n## Copyright and License\n\nCopyright (c) 2019 [Ian Walter](https://ianwalter.dev)\n\nThis work is free. You can redistribute it and/or modify it under the\nterms of the ISC License. See the [LICENSE.md](./LICENSE.md) file for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fianwalter%2Fimgex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fianwalter%2Fimgex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fianwalter%2Fimgex/lists"}