Popularity
3.7
Declining
Activity
0.0
Stable
1
4
0
Monthly Downloads: 20
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Latest version: v2.0.1.0
gore-and-ash-logging alternatives and similar packages
Based on the "gore" category.
Alternatively, view gore-and-ash-logging alternatives based on common mentions on social networks and blogs.
-
gore-and-ash
Attempt to build game engine with networking in Haskell using FRP as core idea. -
gore-and-ash-demo
Demostration game for Gore&Ash engine -
gore-and-ash-glfw
Core module for gore-and-ash for GLFW events -
gore-and-ash-network
Core module for gore-and-ash for network low-level API -
gore-and-ash-actor
Core module for gore-and-ash for actor based programming style -
gore-and-ash-async
Core module for Gore&Ash engine that embeds async IO actions into game loop. -
gore-and-ash-lambdacube
Core module for Gore&Ash engine that do something.
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
Do you think we are missing an alternative of gore-and-ash-logging or a related project?
Popular Comparisons
README
gore-and-ash-logging
The module provides facilities for console logging for Gore&Ash engine.
Installing
Add following to your stack.yml
to packages
section:
- location:
git: https://github.com/Teaspot-Studio/gore-and-ash-logging.git
commit: <PLACE HERE FULL HASH OF LAST COMMIT>
When defining you application stack, add LoggingT
:
type AppStack = ModuleStack [LoggingT, ... other modules ... ] IO
And derive LoggingMonad
for your resulting AppMonad
:
newtype AppMonad a = AppMonad (AppStack a)
deriving (Functor, Applicative, Monad, MonadFix, MonadIO, LoggingMonad)