Popularity
3.1
Stable
Activity
0.0
Stable
2
4
0
Monthly Downloads: 4
Programming language: Haskell
License: BSD 1-Clause License
Latest version: v2.0.0.0
gore-and-ash-network alternatives and similar packages
Based on the "gore" category.
Alternatively, view gore-and-ash-network alternatives based on common mentions on social networks and blogs.
-
gore-and-ash-async
DISCONTINUED. Core module for Gore&Ash engine that embeds async IO actions into game loop.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of gore-and-ash-network or a related project?
README
gore-and-ash-network
The module provides facilities for basic networking for Gore&Ash engine.
The module depends on gore-and-ash-logging module.
Installing
Add following to your stack.yml
to packages
section:
- location:
git: https://github.com/Teaspot-Studio/gore-and-ash-network.git
commit: <PLACE HERE FULL HASH OF LAST COMMIT>
When defining you application stack, add NetworkT
:
type AppStack = ModuleStack [LoggingT, NetworkT, ... other modules ... ] IO
And derive NetworkMonad
for your resulting AppMonad
:
newtype AppMonad a = AppMonad (AppStack a)
deriving (Functor, Applicative, Monad, MonadFix, MonadIO, MonadThrow, MonadCatch LoggingMonad, NetworkMonad)