rapid 0.1.5.1 → 0.1.5.2
raw patch · 2 files changed
+6/−11 lines, 2 files
Files
- README.md +3/−7
- rapid.cabal +3/−4
README.md view
@@ -1,10 +1,6 @@ # [Rapid](https://hackage.haskell.org/package/rapid) -This is a helper library for rapid prototyping in GHCi sessions. It-provides hot-reloadable background threads as well as values that can be-reused across module reloads (to save initialisation time). Main use-cases include the development of long-running applications, especially-those with multiple separable units: servers, web applications,-interactive user interfaces, etc.+Hot reload and reload-surviving values with GHCi. -A tutorial-style introduction is contained within the `Rapid` module.+See [Rapid](https://hackage.haskell.org/package/rapid) on hackage for+more info and a tutorial-style introduction.
rapid.cabal view
@@ -1,5 +1,5 @@ name: rapid-version: 0.1.5.1+version: 0.1.5.2 category: Development synopsis: Hot reload and reload-surviving values with GHCi maintainer: Markus Läll <markus.l2ll@gmail.com>@@ -10,8 +10,7 @@ license: BSD3 license-file: LICENSE -description: This package provides a rapid prototyping suite for- GHCi:+description: Features: . @@ -19,7 +18,7 @@ you iterate: improves development experience for long-running applications such as (web) servers or user interfaces by keeping the app running in the- background and allowing reloading it after code+ background and allowes reloading components after code changes. .