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

https://github.com/functionhaus/conn_artist

A simple helper library for common Plug interactions.
https://github.com/functionhaus/conn_artist

Last synced: 10 months ago
JSON representation

A simple helper library for common Plug interactions.

Awesome Lists containing this project

README

          

# ConnArtist

ConnArtist is a simple helper library for common Plug patterns in order to reduce
duplication across any Plug-powered Elixir apps.

The library is starting small with just a few helpers that I've personally used,
but please feel free to submit pull requests for additional helpers and patterns
that you believe would be beneficial in such a library.

All of the functions in this library are currently located in the top-level
ConnArtist module but this could change as it grows in scope and
requires more rigorous organization.

At the moment this library includes only Plug and Jason as dependencies. The
goal is to keep the dependency set as svelte as possible in order to retain the
broadest possible compatibility with various implementations of Plug across
applications in the Elixir community.

## Installation

The package can be installed by adding `conn_artist` to your list of
dependencies in `mix.exs`:

```elixir
def deps do
[
{:conn_artist, "~> 0.0"}
]
end
```

## Availability

This library is currently published at for use with the public hex.pm
repository at https://hex.pm/packages/conn_artist.

Source code is available at the [FunctionHaus Github Organization](
https://github.com/functionhaus) at
https://github.com/functionhaus/conn_artist.

## License

ConnArtist source code is released under Apache 2 License.
Check LICENSE file for more information.