An open API service indexing awesome lists of open source software.

https://github.com/harmon25/phoenix_jwt

JWT Plugin for Phoenix Framework (work in progress)
https://github.com/harmon25/phoenix_jwt

Last synced: 25 days ago
JSON representation

JWT Plugin for Phoenix Framework (work in progress)

Awesome Lists containing this project

README

          

# PhoenixJwt
Elixir package for Phoenix applications to easiliy facilitate the use of JWTs for authentication

## Installation

If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:

1. Add phoenix_jwt to your list of dependencies in `mix.exs`:

def deps do
[{:phoenix_jwt, "~> 0.0.1"}]
end

2. Ensure phoenix_jwt is started before your application:

def application do
[applications: [:phoenix_jwt]]
end