Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elixir-maru/maru
Elixir RESTful Framework
https://github.com/elixir-maru/maru
Last synced: about 1 month ago
JSON representation
Elixir RESTful Framework
- Host: GitHub
- URL: https://github.com/elixir-maru/maru
- Owner: elixir-maru
- License: bsd-3-clause
- Created: 2014-12-31T07:07:57.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2019-09-13T14:08:13.000Z (about 5 years ago)
- Last Synced: 2024-10-01T11:41:43.226Z (about 1 month ago)
- Language: Elixir
- Homepage: https://maru.readme.io
- Size: 595 KB
- Stars: 1,317
- Watchers: 37
- Forks: 84
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Maru
> REST-like API micro-framework for elixir inspired by [grape](https://github.com/ruby-grape/grape).
[![Build Status](https://img.shields.io/travis/elixir-maru/maru.svg?style=flat-square)](https://travis-ci.org/elixir-maru/maru)
[![Hex.pm Version](https://img.shields.io/hexpm/v/maru.svg?style=flat-square)](https://hex.pm/packages/maru)
[![Docs](https://inch-ci.org/github/elixir-maru/maru.svg?branch=master&style=flat-square)](https://inch-ci.org/github/elixir-maru/maru)
[![Hex.pm Downloads](https://img.shields.io/hexpm/dt/maru.svg?style=flat-square)](https://hex.pm/packages/maru)## Installation
To get started with Maru, add the following to `mix.exs`:
```elixir
def deps() do
[
{:maru, "~> 0.14"},
{:plug_cowboy, "~> 2.0"},# Optional dependency, you can also add your own json_library dependency
# and config with `config :maru, json_library, YOUR_JSON_LIBRARY`.
{:jason, "~> 1.1"}
]
end
```## Usage
lib/my_app/server.ex:
```elixir
defmodule MyApp.Server do
use Maru.Server, otp_app: :my_app
enddefmodule Router.User do
use MyApp.Servernamespace :user do
route_param :id do
get do
json(conn, %{user: params[:id]})
enddesc "description"
params do
requires :age, type: Integer, values: 18..65
requires :gender, type: Atom, values: [:male, :female], default: :femalegroup :name, type: Map do
requires :first_name
requires :last_name
endoptional :intro, type: String, regexp: ~r/^[a-z]+$/
optional :avatar, type: File
optional :avatar_url, type: String
exactly_one_of [:avatar, :avatar_url]
end# post do
# ...
# end
end
end
enddefmodule Router.Homepage do
use MyApp.Serverresources do
get do
json(conn, %{hello: :world})
endmount Router.User
end
enddefmodule MyApp.API do
use MyApp.Serverbefore do
plug Plug.Logger
plug Plug.Static, at: "/static", from: "/my/static/path/"
endplug Plug.Parsers,
pass: ["*/*"],
json_decoder: Jason,
parsers: [:urlencoded, :json, :multipart]mount Router.Homepage
rescue_from Unauthorized, as: e do
IO.inspect(e)conn
|> put_status(401)
|> text("Unauthorized")
endrescue_from [MatchError, RuntimeError], with: :custom_error
rescue_from :all, as: e do
conn
|> put_status(Plug.Exception.status(e))
|> text("Server Error")
enddefp custom_error(conn, exception) do
conn
|> put_status(500)
|> text(exception.message)
end
end
```In your `Application` module, add `Server` as a worker:
```elixir
defmodule MyApp.Application do
use Applicationdef start(_type, _args) do
children = [
MyApp.Server
]opts = [strategy: :one_for_one, name: MyApp.Supervisor]
Supervisor.start_link(children, opts)
end
end
```Then configure `maru`:
```elixir
# config/config.exs
config :my_app, MyApp.Server,
adapter: Plug.Cowboy,
plug: MyApp.API,
scheme: :http,
port: 8880config :my_app,
maru_servers: [MyApp.Server]
```Or let `maru` works with `confex` :
```elixir
config :my_app, MyApp.Server,
adapter: Plug.Cowboy,
plug: MyApp.API,
scheme: :http,
port: {:system, "PORT"}defmodule MyApp.Server do
use Maru.Server, otp_app: :my_appdef init(_type, opts) do
Confex.Resolver.resolve(opts)
end
end
```For more information, check out [Guides](https://maru.readme.io) and [Examples](https://github.com/elixir-maru/maru_examples)