otp - About a client for pusher written in Erlang -
i want write module need able push message pusher in erlang. found repo https://github.com/bradfordw/pusherl , not maintained anymore, think can adapt make work. followed readme, , ran rebar command. open rebar console command ./rel/pusherl/bin/pusherl console so server should start. when try call gen_server:call(pusherl_server, {push, {"channelname", "eventname", "payload"}}). then throws error: exception exit: {noproc,{gen_server,call, [pusherl_server, {push, {"channelname","eventname","payload"}}]}} in function gen_server:call/2 (gen_server.erl, line 182) i'm quite new erlang , otp, , takes me half of day make work not successful. please me solve this. appreciate. by way, if know other pusher client, please suggest me. lot. here code gen_server callback: -module(pusherl_server). -behaviour(gen_server). -define(server...