Azolo
Hey everyone,
I just released WebSockex which is a Elixir WebSocket client.
WebSockex strives to work as a OTP special process, be RFC6455 compliant, and be simple to use by providing smart defaults for common actions.
Take a look and let me know about any questions, suggestions, or any other comments you may have,
Trending in Announcing
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries.
offset-based pagination with...
New
I needed to reuse React components from my Chrome extension in my Phoenix/LiveView backend. I noticed that for Svelte/Vue, there are live...
New
I released Doggo, a collection of unstyled Phoenix components.
https://github.com/woylie/doggo
Features
Unstyled Phoenix components....
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hello
Published a new library - ProcessHub!
ProcessHub is a library designed to manage process distribution within the Elixir cluster. ...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
It’s not that it’s vocabulary is too advanced. It’s something worse.
I get lost trying to follow even a paragraph written by Claude. It’...
New
This showed up on my feed.. anyone heard of it? Just hype?
Ox Alpha is a reasoning model designed for coding, sustained ag...
New
Hey folks,
I just published a post about Hologram’s funding and where the project goes next - the short version:
Curiosum as Main Spons...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
Azolo
Currently SSL peers aren’t verified. I tried to figure out how to make it work, but it seems really DIY in the underlying Erlang
:sslmodule.If anyone has any advice on how to handle this it would be much appreciated.
jackalcooper
Good library. I like the idea to map WS to a process. The WS library I’m using now doesn’t provide process abstraction so I have to implement it every time.
ericTsiliacos
Does your library support reconnect? When the server goes down, we’d like the websocket client to try to reconnect indefinitely.
Azolo
It does, take a look at the docs for
handle_disconnect.hildersantos
Thanks for sharing this with the community. I was looking for something exactly like this - I’m developing some API clients right now, and one of them needs to connect with a WebSocket. I guess this will help me a lot!
I’ll test it on the coming days.
Thanks again!
Jonathan
Awesome work, Im having some trouble though, how do i send json, im currently trying
Client.send_frame(pid, {:text, "{'Page':{'url':'asdf'}}"})but i get the response `Received Message: {“error”:{“code”:-32700,“message”:“Message must be a valid JSON”}}`` from the connected server.. any help would be appreciatedzambal
JSON should be double quoted, but I would just use a JSON encoder instead of manually writing it out:
Jonathan
thanks! the double quote did the trick, but yeah, probably better to use an encoder..
Azolo
WebSockex 0.1.3 Released!
The ChangeLog for this release includes:
Client.start_linkwill no longer cause the calling process to exit onconnection failure and will return a proper error tuple instead.
WebSockex.Conn.RequestErrortoWebSockex.RequestError.handle_connect_failureto be invoked after initiating a connectionfails. Fixes #5
Checkout the
v0.1.2..v0.1.3diff for more info.Azolo
WebSockex 0.2.0 Released!
This release has some major API changes where callbacks are changed or removed without deprecation.
The affected callbacks are:
init/2- Removed in favor ofhandle_connect/2.handle_disconnect/2- The first argument is now a map.handle_connect_failure/2- Removed with functionality rolled intohandle_disconnect/2.Please don’t be afraid to provide feedback.
WebSockexis already meeting my needs, I’d like more information on what needs to change to meet the needs of others.The full changelog for this release includes:
Major Changes
WebSockex.Clientmodule functionality into the baseWebSockexmodule.handle_connect_failurefunctionality intohandle_disconnect.initfunctionality intohandle_connectDetailed Changes
initfunctionality intohandle_connecthandle_connectwill be invoked upon establishing any connection, i.e., the intial connection and when reconnecting.initcallback is removed entirely.WebSockex.Clientmodule functionality into the baseWebSockexmodule.Applicationmodule toWebSockex.Application.WebSockex.startfor non-linked processes.asyncoption tostartandstart_link.handle_connect_failurefunctionality intohandle_disconnect.handle_disconnectis now a map with the keys::reason,:conn, and:attempt_number.handle_disconnectnow has another return option for when wanted to reconnect with different URI options or headers:{:reconnect, new_conn, new_state}:handle_initial_conn_failureoption to the options forstartandstart_linkthat will allowhandle_disconnectto be called if we can establish a connection during those functions.handle_connect_failureentirely.Checkout the
v0.1.3..v0.2.0diff for more info.