{"id":31545257,"url":"https://github.com/slavone/catalyst","last_synced_at":"2025-11-07T18:05:14.441Z","repository":{"id":57482392,"uuid":"92410703","full_name":"slavone/catalyst","owner":"slavone","description":"Basic WebDav client for Elixir","archived":false,"fork":false,"pushed_at":"2018-06-03T18:50:13.000Z","size":21,"stargazers_count":11,"open_issues_count":2,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-03T12:57:51.725Z","etag":null,"topics":["elixir","webdav-client"],"latest_commit_sha":null,"homepage":null,"language":"Elixir","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/slavone.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":"2017-05-25T14:19:34.000Z","updated_at":"2023-09-01T10:48:25.000Z","dependencies_parsed_at":"2022-09-02T04:21:00.365Z","dependency_job_id":null,"html_url":"https://github.com/slavone/catalyst","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/slavone/catalyst","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slavone%2Fcatalyst","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slavone%2Fcatalyst/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slavone%2Fcatalyst/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slavone%2Fcatalyst/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/slavone","download_url":"https://codeload.github.com/slavone/catalyst/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slavone%2Fcatalyst/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278327866,"owners_count":25968897,"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","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","webdav-client"],"created_at":"2025-10-04T14:43:29.670Z","updated_at":"2025-10-04T14:43:34.215Z","avatar_url":"https://github.com/slavone.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Catalyst\n\nVery basic WebDav client for Elixir. Uses :hackney as http driver\n\n## Usage\n\n```elixir\n# Start a genserver process\n\nCatalyst.start_link host: \"http://example-webdav.com\", user: \"some_user\", password: \"123\"\n\n# or, in your OTP app add Catalyst as a worker\n\n  def start(_type, _args) do\n    import Supervisor.Spec\n\n    webdav_conf = [host: \"http://example-webdav.com\", user: \"some_user\", password: \"123\"]\n    # or you can supply just [host: \"some_host\", digest: \"sadsadasd=\"]\n    # explicitly supplied digest will override digest hashed from user:password\n    # currently supports only Basic HTTP authentication\n    children = [\n      worker(Catalyst, [webdav_conf])\n    ]\n\n    Supervisor.start_link(children, strategy: :one_for_one)\n  end\n```\n\nAuthentication params will be stored inside genserver process, and you a good to go.\n\ncheckout the [Docs](https://hexdocs.pm/catalyst/0.1.0/api-reference.html)\n\n## Installation\n\nIf [available in Hex](https://hex.pm/docs/publish), the package can be installed\nby adding `catalyst` to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [{:catalyst, \"~\u003e 0.2.0\"}]\nend\n```\n\nDocumentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)\nand published on [HexDocs](https://hexdocs.pm). Once published, the docs can\nbe found at [https://hexdocs.pm/catalyst](https://hexdocs.pm/catalyst).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslavone%2Fcatalyst","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fslavone%2Fcatalyst","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslavone%2Fcatalyst/lists"}