Popularity
9.4
Declining
Activity
0.0
Stable
148
12
29

Monthly Downloads: 74
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Web     Engine    
Latest version: v1.3.11

engine-io alternatives and similar packages

Based on the "Web" category.
Alternatively, view engine-io alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of engine-io or a related project?

Add another 'Web' Package

README

engine.io

This repository contains the following projects:

     Project Version      Description
Hackage version Hackage dependencies [engine-io](./engine-io) contains a Haskell implementation of Engine.IO, a real-time abstraction for the web, allowing one to interact with clients in a socket-like fashion (rather than the more traditional request-response pattern). Supports long-polling along with upgrading to WebSockets. This library is API agnostic - you need to connect it your web server by providing a ServerAPI object.
Hackage version Hackage dependencies [engine-io-snap](./engine-io-snap) provides a ServerAPI that can be used to run an Engine.IO application in Snap.
Hackage version Hackage dependencies [engine-io-yesod](./engine-io-yesod) provides a ServerAPI that can be used to run an Engine.IO application in Yesod.
Hackage version Hackage dependencies [engine-io-wai](./engine-io-wai) provides a ServerAPI that can be used to run an Engine.IO application in WAI.
Hackage version Hackage dependencies [socket-io](./socket-io) implements the Socket.IO protocol on top of engine-io. Socket.IO is a higher-level abstraction based on events. Clients send events to the server, which can respond by sending events back to clients, or broadcasting events to all other clients.
[examples](./examples) contains an example engine-io application (a latency test) and a chat server application written using socket-io.