/quic

Primary LanguageElixir

Quic

Plain elixir based implementation of QUIC (RFC 8999, 9000, 9001).

Development

QUIC is tls encrypted by default, therefore certificates are required. The repo currently requires mkcert to be installed to handle those certs.

# Create certificates
mix setup

# Start development server
mix dev
iex -S mix dev

Installation

If available in Hex, the package can be installed by adding quic to your list of dependencies in mix.exs:

def deps do
  [
    {:quic, "~> 0.1.0"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/quic.