Popularity
7.2
Growing
Activity
0.0
Stable
28
4
2
Monthly Downloads: 1
Programming language: Haskell
License: BSD 2-clause "Simplified" License
Tags:
Data
editable alternatives and similar packages
Based on the "Data" category.
Alternatively, view editable alternatives based on common mentions on social networks and blogs.
-
compendium-client
DISCONTINUED. Mu (μ) is a purely functional framework for building micro services. -
streaming
An optimized general monad transformer for streaming applications, with a simple prelude of functions -
text-icu
This package provides the Haskell Data.Text.ICU library, for performing complex manipulation of Unicode text.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of editable or a related project?
README
editable
Derive editors for data types.
Add deriving Generic
and instance Editable Foo
to your
data type, and you can launch an editor for it with
editor :: Editable a => a -> IO a
.
{-# LANGUAGE DeriveGeneric #-}
module Demo where
import Data.Editable
import GHC.Generics
data Foo = Bar String Int | Baz Int
deriving (Show, Generic)
instance Editable Foo
Setup
cabal sandbox init
cabal install --only-dependencies
cabal exec ghci demo.hs
# main