danibot alternatives and similar packages
Based on the "Networking" category.
Alternatively, view danibot 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 -
snap-server
A fast HTTP server library, which runs Snap web handlers. -
PortFusion
Haskell-powered cross-platform transport-layer distributed reverse / forward proxy & tunneling solution – currently available for all TCP protocols (RDP, VNC, HTTP(S), SSH, ...). -
glirc
Haskell IRC library and console client - Join us on libera.chat #glirc -
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!)
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 danibot or a related project?
README
A very basic framework for creating Slack bots.
The bot will respond to messages in IM channels, and also to messages
explicitly directed at him in general channels (@nameofthebot: some message
).
The bot reads the Slack api token from the environment variable "DANIBOT_SLACK_API_TOKEN".
The default danibot executable comes with a few example handlers:
- up? host port
Checks if a port is open in a host.
- lookup key
Checks the value of key in a dictionary that is loaded at startup with the --dict parameter. The dictionary is a json object with string values.
- help
Lists available options.
Right now the bot ignores most chat events apart from messages.
To create your own customized bot, import Network.Danibot.Main
and pass a
value of type IO (Either String (Text -> IO Text))
to mainWith
, where Text
-> IO Text
is the type of the handler function.