opensource alternatives and similar packages
Based on the "Networking" category.
Alternatively, view opensource 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. -
websockets
A Haskell library for creating WebSocket-capable servers -
snap-server
A fast HTTP server library, which runs Snap 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) -
glirc
Haskell IRC library and console client - Join us on libera.chat #glirc -
io-streams
Simple, composable, and easy-to-use stream I/O for 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 -
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) -
secure-sockets
A library for making secure connections between servers. -
network-transport-tcp
TCP Realisation of Network.Transport -
linklater
A Haskell library for the Slack API (including real-time messaging!) -
HaskellNet-SSL
Helpers to connect to SSL/TLS mail servers with HaskellNet
Build time-series-based applications quickly and at scale.
* 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 opensource or a related project?
README
haskell-opensourceapi
haskell-opensource
is an API Wrapper that allows you to query the
Open Source License API with Haskell.
Example
import Network.Protocol.OpenSource.License (licenseById, olName)
import Control.Monad.Trans.Except (runExceptT)
main = do
gpl <- runExceptT $ licenseById "LGPL-3.0"
putStrLn $ case gpl of
Right license -> show $ olName license
Left error -> "Error during license request!" ++ show error
Installing
cabal install opensource
*Note that all licence references and agreements mentioned in the opensource README section above
are relevant to that project's source code only.