servant-websockets alternatives and similar packages
Based on the "Servant" category.
Alternatively, view servant-websockets alternatives based on common mentions on social networks and blogs.
-
servant-polysemy
A Haskell library: Utilities for using servant in a polysemy stack. -
servant-auth-wordpress
Authenticate Wordpress Cookies & Nonces in Haskell Requests. -
http-rfc7807
Problem Details for HTTP APIs as defined by RFC7807
Collect and Analyze Billions of Data Points in Real Time
Do you think we are missing an alternative of servant-websockets or a related project?
README
Introduction
This small library provides two servant endpoints for implementing
websockets and is based on websockets
and wai-websockets
.
This library provides three servant
endpoints: WebSocket
, WebSocketPending
and
WebSocketConduit
. WebSocket
is is a low-level interface for directly
interacting with a Connection
(see the
websockets library
for more information). WebSocketPending
allows using the rejectRequest
with various return codes for greater control. WebSocketConduit
provides a
conduit based endpoint
for JSON serializable input and output.
See the module documentation for examples.