Damir
Damir

Reputation: 56199

Suggestion what to use for websocket server yaws or mochiweb or plane Erlang

I am very new to Erlang and I need to create websocket server connected with postgre. I googled and found yaws and mochiweb and examples in book Programming Erlang by Joe Armstrong. Can anyone with more experience direct for better solution what to use ? Server is simple and should answer on maybe 15 different JSON messages

Upvotes: 0

Views: 139

Answers (1)

David Budworth
David Budworth

Reputation: 11626

websockets are not super-straightforward to implement.

I've used Cowboy on several occasions and find it easy, fast and simple to embed in my applications.

Upvotes: 2

Related Questions