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 -
PortFusion
Haskell-powered cross-platform transport-layer distributed reverse / forward proxy & tunneling solution – currently available for all TCP protocols (RDP, VNC, HTTP(S), SSH, ...). -
snap-server
A fast HTTP server library, which runs Snap web handlers. -
HaskellNet
Haskell library which provides client support for POP3, SMTP, and IMAP protocols. -
glirc
Haskell IRC library and console client - Join us on libera.chat #glirc -
network-transport-zeromq
ZeroMQ transport for distributed-process (aka Cloud Haskell) -
secure-sockets
A library for making secure connections between servers. -
graphula
A simple interface for generating persistent data and linking its dependencies -
ngx-export
Nginx module for binding Haskell code in configuration files for great good! -
http-types
Generic HTTP types for Haskell (for both client and server code) -
linklater
A Haskell library for the Slack API (including real-time messaging!)
Deliver Cleaner and Safer Code - Right in Your IDE of Choice!
* 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.