https://github.com/nebo15/eview
Nebo #15 Views for our Elixir API applications.
https://github.com/nebo15/eview
api elixir elixir-lang hex package viewmodel
Last synced: about 1 year ago
JSON representation
Nebo #15 Views for our Elixir API applications.
- Host: GitHub
- URL: https://github.com/nebo15/eview
- Owner: Nebo15
- License: mit
- Created: 2016-10-09T12:47:54.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-12-14T05:49:55.000Z (over 6 years ago)
- Last Synced: 2025-04-24T18:05:18.793Z (about 1 year ago)
- Topics: api, elixir, elixir-lang, hex, package, viewmodel
- Language: Elixir
- Homepage: http://docs.apimanifest.apiary.io/
- Size: 188 KB
- Stars: 4
- Watchers: 13
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Demo
In [Nebo #15](http://nebo15.com) we have our own [API design manifest](http://docs.apimanifest.apiary.io/), and we trying to follow it.
This package extracts all common patterns and utilities, to remove boilerplate from business-logic services.
## Installation
The package can be installed as:
1. Add `eview` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:eview, "~> 0.12.1"}]
end
```
2. Ensure `eview` is started before your application:
```elixir
def application do
[applications: [:eview]]
end
```
The docs can be found at [https://hexdocs.pm/eview](https://hexdocs.pm/eview).