Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1.19 KB

README.md

File metadata and controls

48 lines (34 loc) · 1.19 KB

concerto Build Status Hex.pm Hex.pm

file-based routing library for elixir

Installation

Concerto is available in Hex and can be installed as:

  1. Add concerto your list of dependencies in mix.exs:

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

Usage

Given the following directory structure

.
├── lib
│   └── my_router.ex
└── web
    ├── GET.exs
    └── users
        └── @user
            ├── GET.exs
            └── POST.exs

a router can be contstructed with the following:

defmodule MyRouter do
  use Concerto, root: "web",
                ext: ".exs",
                methods: ["GET", "POST", "PUT", "DELETE", "PATCH"],
                module_prefix: MyApp.Web
end

API

match(method, path)

resolve(name, params)

resolve_module(name)