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.
- Host: GitHub
- URL: https://github.com/functionhaus/conn_artist
- Owner: functionhaus
- License: other
- Created: 2019-01-12T11:45:13.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-12T22:29:12.000Z (about 7 years ago)
- Last Synced: 2025-03-01T08:12:08.502Z (11 months ago)
- Language: Elixir
- Size: 280 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.