{"id":13508436,"url":"https://github.com/joken-elixir/joken","last_synced_at":"2025-05-13T17:13:39.604Z","repository":{"id":20821235,"uuid":"24107016","full_name":"joken-elixir/joken","owner":"joken-elixir","description":"Elixir JWT library","archived":false,"fork":false,"pushed_at":"2024-12-01T05:23:02.000Z","size":751,"stargazers_count":788,"open_issues_count":10,"forks_count":102,"subscribers_count":10,"default_branch":"main","last_synced_at":"2025-05-08T05:21:18.555Z","etag":null,"topics":["elixir","joken","jwt"],"latest_commit_sha":null,"homepage":null,"language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/joken-elixir.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","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}},"created_at":"2014-09-16T16:08:56.000Z","updated_at":"2025-05-06T11:48:39.000Z","dependencies_parsed_at":"2024-02-11T23:22:04.999Z","dependency_job_id":"8a21de10-8e01-4260-baa5-6b4e4a881e39","html_url":"https://github.com/joken-elixir/joken","commit_stats":{"total_commits":345,"total_committers":74,"mean_commits":4.662162162162162,"dds":0.6811594202898551,"last_synced_commit":"6aa9d2a952cc3c3df00e3094639647772f66f64f"},"previous_names":["bryanjos/joken"],"tags_count":37,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joken-elixir%2Fjoken","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joken-elixir%2Fjoken/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joken-elixir%2Fjoken/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joken-elixir%2Fjoken/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joken-elixir","download_url":"https://codeload.github.com/joken-elixir/joken/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253025795,"owners_count":21842448,"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":["elixir","joken","jwt"],"created_at":"2024-08-01T02:00:53.033Z","updated_at":"2025-05-13T17:13:34.592Z","avatar_url":"https://github.com/joken-elixir.png","language":"Elixir","funding_links":[],"categories":["JSON","Elixir"],"sub_categories":[],"readme":"# Joken\n\n[![CI](https://github.com/joken-elixir/joken/actions/workflows/ci.yml/badge.svg)](https://github.com/joken-elixir/joken/actions/workflows/ci.yml)\n[![Module Version](https://img.shields.io/hexpm/v/joken.svg)](https://hex.pm/packages/joken)\n[![Hex Docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/joken/)\n[![Total Download](https://img.shields.io/hexpm/dt/joken.svg)](https://hex.pm/packages/joken)\n[![License](https://img.shields.io/hexpm/l/joken.svg)](https://github.com/joken-elixir/joken/blob/main/LICENSE)\n[![Last Updated](https://img.shields.io/github/last-commit/joken-elixir/joken.svg)](https://github.com/joken-elixir/joken/commits/main)\n\nA JSON Web Token (JWT) Library.\n\nPlease, do read our comprehensive documentation and guides:\n\n- [Changelog](https://hexdocs.pm/joken/changelog.html)\n- [Joken Overview](https://hexdocs.pm/joken/introduction.html)\n- [Configuration](https://hexdocs.pm/joken/configuration.html)\n- [Signers](https://hexdocs.pm/joken/signers.html)\n- [Asymmetric cryptography signers](https://hexdocs.pm/joken/asymmetric_cryptography_signers.html)\n- [Testing your app with Joken](https://hexdocs.pm/joken/testing.html)\n- [JWT Common use cases](https://hexdocs.pm/joken/common_use_cases.html)\n- [Migrating from Joken 1.0](https://hexdocs.pm/joken/migration_from_1.html)\n- [Custom header arguments](https://hexdocs.pm/joken/custom_header_arguments.html)\n\n## Usage\n\nAdd `:joken` to your list of dependencies in `mix.exs`:\n\n``` elixir\ndef deps do\n  # .. other deps\n  {:joken, \"~\u003e 2.6\"},\n  # Recommended JSON library\n  {:jason, \"~\u003e 1.4\"}\nend\n```\n\nAll set! (don't forget to take a look at our comprehensive [documentation and guides](https://hexdocs.pm/joken/introduction.html)!)\n\n## Benchmarking\n\nJust run the benchmark script based on the supported algorithm:\n\n``` shell\nmix run benchmarks/hs_benchmark.exs\nmix run benchmarks/jose_hs_benchmark.exs\nmix run benchmarks/pem_rs_benchmark.exs\nmix run benchmarks/rs_benchmark.exs\n```\n\n## License\n\nCopyright (c) 2014 Bryan Joseph\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\n## Disclaimer\n\nThis library would not be possible without the work of @potatosalad (Andrew Bennet). Specifically his library [erlang-jose](https://github.com/potatosalad/erlang-jose/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoken-elixir%2Fjoken","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoken-elixir%2Fjoken","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoken-elixir%2Fjoken/lists"}