Skip to content

Instantly share code, notes, and snippets.

@kraih
Last active September 5, 2015 09:24
Show Gist options
  • Save kraih/470964 to your computer and use it in GitHub Desktop.
Save kraih/470964 to your computer and use it in GitHub Desktop.
use Mojolicious::Lite;
websocket '/echo' => sub {
my $self = shift;
$self->on(message => sub {
my ($self, $message) = @_;
$self->send("echo: $message");
});
};
app->start;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment