gleam-lang / awesome-gleam

💯 A collection of Gleam libraries, projects, and resources
1.36k stars 76 forks source link

Added chatter-reborn under web applications #176

Closed connellr023 closed 4 months ago

connellr023 commented 4 months ago

Chatter is a real-time chat web application that demonstrates gleam's ability to take advantage of the actor model when developing concurrent programs.

lpil commented 4 months ago

Hello! CI is failing due to the generated README being edited here.

Cool application! I had a little look through it and I'm not sure it would be best to use as an example for others to learn from as there's some issues with how actors are being used, due to being a learning project. Ideally applications used as examples would show best practices, and not result in people copying over any of the issues.

connellr023 commented 4 months ago

That's understandable. Additionally, could you provide insight on how to use actors better. It's hard to find this information as the language is so new.

lpil commented 4 months ago

OTP isn't part of Gleam specifically, so any existing books on it from Erlang or Elixir will teach what you need to know. Elixir in Action and Learn You Some Erlang and Designing for Scale with Erlang/OTP are great books

connellr023 commented 4 months ago

Ok thanks. I am going to close this and see what I can do.