Hach alternatives and similar packages
Based on the "Networking" category.
Alternatively, view Hach alternatives based on common mentions on social networks and blogs.
-
snap-core
Core type definitions (Snap monad, HTTP types, etc) and utilities for web handlers. -
call-haskell-from-anything
Call Haskell functions from any programming language via serialization and dynamic libraries -
PortFusion
Haskell-powered cross-platform transport-layer distributed reverse / forward proxy & tunneling solution – currently available for all TCP protocols (RDP, VNC, HTTP(S), SSH, ...). -
network-transport-zeromq
ZeroMQ transport for distributed-process (aka Cloud Haskell) -
HaskellNet
Haskell library which provides client support for POP3, SMTP, and IMAP protocols. -
graphula
A simple interface for generating persistent data and linking its dependencies -
http-types
Generic HTTP types for Haskell (for both client and server code) -
ngx-export
Nginx module for binding Haskell code in configuration files for great good! -
secure-sockets
A library for making secure connections between servers. -
linklater
A Haskell library for the Slack API (including real-time messaging!) -
http-client-streams
http-client for io-streams supporting openssl
Access the most powerful time series database as a service
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Hach or a related project?
README
HaCh
What is it?
HaCh is a simple Chat written in Haskell. It consists of 3 separate programs:
hach-server
hach-client
hach-nclient
It uses Chan
s via sockets for message broadcasting and vty terminal GUI library for a client interface.
What it was written for?
It was written as an example of solving the following specification:
Write a command-line program to send a message from one client to another
using the server. The client should be able to send messages with some specific
code, server should resend these messages like a messages from a third person.
How to install?
cabal install
By default this will install 3 executables files in ~/.cabal/bin/
dir. Prefix could be set by --prefix
option.
How to use?
Run hach-client
on the server side.
Run hach-client -s SERVER_IP -n NICK
to join chat via simple console client or hach-nclient -s SERVER_IP -n NICK
for vty
-client.