Popularity
5.6
Declining
Activity
0.0
Stable
45
2
23
Monthly Downloads: 4
Programming language: Elixir
License: MIT License
Tags:
Framework Components
Latest version: v0.0.1
phoenix_pubsub_rabbitmq alternatives and similar packages
Based on the "Framework Components" category.
Alternatively, view phoenix_pubsub_rabbitmq alternatives based on common mentions on social networks and blogs.
-
commanded
Use Commanded to build Elixir CQRS/ES applications -
surface
A server-side rendering component library for Phoenix -
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 -
phoenix_ecto
Phoenix and Ecto integration with support for concurrent acceptance testing -
corsica
Elixir library for dealing with CORS requests. ๐ -
react_phoenix
Make rendering React.js components in Phoenix easy -
absinthe_plug
Plug support for Absinthe, the GraphQL toolkit for Elixir -
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 -
rummage_ecto
Search, Sort and Pagination for ecto queries -
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 -
passport
Provides authentication for phoenix application -
rummage_phoenix
Full Phoenix Support for Rummage. It can be used for searching, sorting and paginating collections in phoenix. -
phoenix_token_auth
Token authentication solution for Phoenix. Useful for APIs for e.g. single page apps. -
recaptcha
A simple reCaptcha 2 library for Elixir applications. -
sentinel
DEPRECATED - Phoenix Authentication library that wraps Guardian for extra functionality -
plug_graphql
Plug (Phoenix) integration for GraphQL Elixir -
phx_component_helpers
Extensible Phoenix liveview components, without boilerplate -
plug_rails_cookie_session_store
Rails compatible Plug session store -
multiverse
Elixir package that allows to add compatibility layers via API gateways. -
filterable
Filtering from incoming params in Elixir/Ecto/Phoenix with easy to use DSL. -
scrivener_headers
Scrivener pagination with headers and web linking -
better_params
Cleaner request parameters in Elixir web applications ๐ -
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. -
plug_checkup
PlugCheckup provides a Plug for adding simple health checks to your app -
plug_statsd
Send connection response time and count to statsd -
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.
Updating dependencies is time-consuming.
Solutions like Dependabot or Renovate update but don't merge dependencies. You need to do it manually while it could be fully automated! Add a Merge Queue to your workflow and stop caring about PR management & merging. Try Mergify for free.
Promo
blog.mergify.com
Do you think we are missing an alternative of phoenix_pubsub_rabbitmq or a related project?
README
Phoenix Pubsub - RabbitMQ Adapter
RabbitMQ adapter for the Phoenix framework PubSub layer.
Usage
Add phoenix_pubsub_rabbitmq
as a dependency in your mix.exs
file.
def deps do
[{:phoenix_pubsub_rabbitmq, "0.0.1"}]
end
You should also update your application list to include :phoenix_pubsub_rabbitmq
:
def application do
[applications: [:phoenix_pubsub_rabbitmq]]
end
Edit your Phoenix application Endpoint configuration:
config :my_app, MyApp.Endpoint,
...
pubsub: [name: MyApp.PubSub,
adapter: Phoenix.PubSub.RabbitMQ,
options: [host: "localhost"]
The following options are supported:
* `host` - The hostname of the broker (defaults to \"localhost\");
* `port` - The port the broker is listening on (defaults to `5672`);
* `username` - The name of a user registered with the broker (defaults to \"guest\");
* `password` - The password of user (defaults to \"guest\");
* `virtual_host` - The name of a virtual host in the broker (defaults to \"/\");
* `heartbeat` - The connection hearbeat interval in seconds (defaults to `0` - turned off);
* `connection_timeout` - The connection timeout in milliseconds (defaults to `infinity`);
* `pool_size` - Number of active connections to the broker
Notes
- An Exchange is declared with the name of the Phoenix PubSub server (example: MyApp.PubSub)
- When subscribing to a topic:
- a Queue with a server assigned name is declared;
- the Queue is bound to the Exchange using the
topic
as routing key; - a consumer process is started. The consumer will ack each message in the Queue as it sends the payload to the subscriber pid;
- Can be used when distributed Erlang is not an option (like when deploying to Heroku); when RabbitMQ is already a dependency (instead of Redis);
- Uses RabbitMQ routing mechanism, delivering a message directly to a consumer process