phoenix_ecto alternatives and similar packages
Based on the "Framework Components" category.
Alternatively, view phoenix_ecto alternatives based on common mentions on social networks and blogs.
-
ex_admin
ExAdmin is an auto administration package for Elixir and the Phoenix Framework -
phoenix_html
Phoenix.HTML functions for working with HTML strings and templates -
absinthe_plug
Plug support for Absinthe, the GraphQL toolkit for Elixir -
react_phoenix
Make rendering React.js components in Phoenix easy -
phoenix_live_reload
Provides live-reload functionality for Phoenix -
params
Easy parameters validation/casting with Ecto.Schema, akin to Rails' strong parameters. -
phoenix_pubsub_redis
The Redis PubSub adapter for the Phoenix framework -
dayron
A repository `similar` to Ecto.Repo that maps to an underlying http client, sending requests to an external rest api instead of a database -
phoenix_token_auth
Token authentication solution for Phoenix. Useful for APIs for e.g. single page apps. -
rummage_phoenix
Full Phoenix Support for Rummage. It can be used for searching, sorting and paginating collections in phoenix. -
sentinel
DEPRECATED - Phoenix Authentication library that wraps Guardian for extra functionality -
plug_rails_cookie_session_store
Rails compatible Plug session store -
phx_component_helpers
Extensible Phoenix liveview components, without boilerplate -
filterable
Filtering from incoming params in Elixir/Ecto/Phoenix with easy to use DSL. -
multiverse
Elixir package that allows to add compatibility layers via API gateways. -
access pass
provides a full user authentication experience for an API. Includes login,logout,register,forgot password, forgot username, confirmation email and all that other good stuff. Includes plug for checking for authenticated users and macro for generating the required routes. -
better_params
Cleaner request parameters in Elixir web applications ๐ -
scrivener_headers
Scrivener pagination with headers and web linking -
phoenix_pubsub_rabbitmq
RabbitMQ adapter for Phoenix's PubSub layer -
plug_checkup
PlugCheckup provides a Plug for adding simple health checks to your app -
plug_rest
REST behaviour and Plug router for hypermedia web applications in Elixir -
Votex
Implements vote / like / follow functionality for Ecto models in Elixir. Inspired from Acts as Votable gem in Ruby on Rails -
trailing_format_plug
An elixir plug to support legacy APIs that use a rails-like trailing format: http://api.dev/resources.json -
phoenix_html_simplified_helpers
Some helpers for phoenix html( truncate, time_ago_in_words, number_with_delimiter, url_for, current_page? ) -
plug_canonical_host
PlugCanonicalHost ensures that all requests are served by a single canonical host.
Elixir and Phoenix Application Security Platform
Do you think we are missing an alternative of phoenix_ecto or a related project?
README
Phoenix/Ecto
A project that integrates Phoenix with Ecto, implementing all relevant protocols.
Installation
You can install phoenix_ecto
by adding it to your list of dependencies in mix.exs
:
def deps do
[{:phoenix_ecto, "~> 4.0"}]
end
The Phoenix <-> Ecto integration
Thanks to Elixir protocols, the integration between Phoenix and Ecto is simply a matter of implementing a handful of protocols. We provide the following implementations:
Phoenix.HTML.FormData
protocol forEcto.Changeset
Phoenix.HTML.Safe
protocol forDecimal
Plug.Exception
protocol for the relevant Ecto exceptions
Concurrent browser tests
This library also provides a plug called Phoenix.Ecto.SQL.Sandbox
that allows developers to run acceptance tests powered by headless browsers such as ChromeDriver and Selenium concurrently. If you are not familiar with Ecto's SQL sandbox, we recommend you to first get acquainted with it by reading Ecto.Adapters.SQL.Sandbox
documentation.
To enable concurrent acceptance tests, make sure you are using PostgreSQL and follow the instructions below:
Set a flag to enable the sandbox in
config/test.exs
:config :your_app, sql_sandbox: true
And use the flag to conditionally add the plug to
lib/your_app/endpoint.ex
:if Application.get_env(:your_app, :sql_sandbox) do plug Phoenix.Ecto.SQL.Sandbox end
Make sure that this is placed before the line
plug YourApp.Router
(or any other plug that may access the database).
You can now checkout a sandboxed connection and pass the connection information to an acceptance testing tool like Hound or Wallaby.
Hound
To write concurrent acceptance tests with Hound, first add it as a dependency to your mix.exs
:
{:hound, "~> 1.0"}
Make sure to start it at the top of your test/test_helper.exs
:
{:ok, _} = Application.ensure_all_started(:hound)
Then add the following to your test case (or case template):
use Hound.Helpers
setup tags do
pid = Ecto.Adapters.SQL.Sandbox.start_owner!(YourApp.Repo, shared: not tags[:async])
on_exit(fn -> Ecto.Adapters.SQL.Sandbox.stop_owner(pid) end)
metadata = Phoenix.Ecto.SQL.Sandbox.metadata_for(YourApp.Repo, pid)
Hound.start_session(metadata: metadata)
:ok
end
Hound supports multiple drivers like Chrome, Firefox, etc but it does not support concurrent tests under PhantomJS (the default).
Wallaby
To write concurrent acceptance tests with Wallaby, first add it as a dependency to your mix.exs
:
{:wallaby, "~> 0.25", only: :test}
Wallaby can take care of setting up the Ecto Sandbox for you if you use use Wallaby.Feature
in your test module.
defmodule MyAppWeb.PageFeature do
use ExUnit.Case, async: true
use Wallaby.Feature
feature "shows some text", %{session: session} do
session
|> visit("/home")
|> assert_text("Hello world!")
end
end
If you don't use Wallaby.Feature
, you can add the following to your test case (or case template):
use Wallaby.DSL
setup tags do
pid = Ecto.Adapters.SQL.Sandbox.start_owner!(YourApp.Repo, shared: not tags[:async])
on_exit(fn -> Ecto.Adapters.SQL.Sandbox.stop_owner(pid) end)
metadata = Phoenix.Ecto.SQL.Sandbox.metadata_for(YourApp.Repo, pid)
{:ok, session} = Wallaby.start_session(metadata: metadata)
end
Wallaby currently supports ChromeDriver and Selenium, allowing testing in almost any browser.
Configuration
The Plug.Exception
implementations for Ecto exceptions may be disabled by including the error in the mix configuration.
config :phoenix_ecto,
exclude_ecto_exceptions_from_plug: [Ecto.NoResultsError]
Copyright and License
Copyright (c) 2015, Chris McCord.
Phoenix/Ecto source code is licensed under the MIT License.
*Note that all licence references and agreements mentioned in the phoenix_ecto README section above
are relevant to that project's source code only.