parsec VS 4koma

Compare parsec vs 4koma and see what are their differences.

parsec

A monadic parser combinator library (by haskell)

4koma

A TOML 1.0 parser library for Kotlin (by valderman)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
parsec 4koma
12 4
831 72
-0.1% -
4.7 0.0
about 1 month ago 10 months ago
Haskell Kotlin
BSD 2-clause "Simplified" License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

parsec

Posts with mentions or reviews of parsec. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-15.
  • Revisiting Haskell after 10 years
    8 projects | dev.to | 15 Jan 2024
    Writing Haskell programs that rely on third-party packages is still an issue when it’s a not actively maintained package. They get out of date with the base library (Haskell’s standard library), and you might see yourself in a situation where you need to downgrade to an older version. This is not exclusive to Haskell, but it happens more often than I’d like to assume. However, if you only rely on known well-maintained libraries/frameworks such as Aeson, Squeleto, Yesod, and Parsec, to name a few, it’s unlikely you will face troubles at all, you just need to be more mindful of what you add as a dependency. There’s stackage.org now, a repository that works with Stack, providing a set of packages that are proven to work well together and help us to have reproducible builds in a more manageable way—not the solution for all the cases but it’s good to have it as an option.
  • Show HN: I wrote a RDBMS (SQLite clone) from scratch in pure Python
    8 projects | news.ycombinator.com | 13 Aug 2023
  • Just write the f*****g parser.
    4 projects | /r/programming | 12 Jan 2023
    The Parsec library for Haskell uses combinators, and there are a few good resources around the internet which explore it, if you know Haskell.
  • Summing polynomials in Haskell
    1 project | /r/haskell | 15 Oct 2022
    Parse the expression using parsec library ( if you're unfamiliar with it please check out https://hackage.haskell.org/package/parsec) it's a strong library for parer combinators. Once you parse the expression u need to define and sum up the similar terms. Check this example out - https://fpunfold.com/2020/05/18/making-a-calculator-in-haskell-with-parsec.html
  • Konbini: a new multiplatform parser library
    4 projects | /r/Kotlin | 10 Oct 2022
    Konbini is a functional parser combinator library inspired by Haskell parsing libraries like Parsec. It's (hopefully) fairly easy to use, and is about as performant as the better-parse library. In fact, it's quite similar to better-parse in many aspects. The main difference is in how parsers are composed. Where better-parse prefers operators and infix functions, Konbini instead uses plain functions.
  • Traverse/mapM for Computation Expressions
    1 project | /r/fsharp | 4 Oct 2022
    Hi everyone, I'm learning F# and currently trying to do a Parsec-like CE, just to get comfortable with computation expressions.
  • Is there good introduction to the parsec library for newbies?
    2 projects | /r/haskell | 9 Jun 2022
  • On a daily base in this sub
    5 projects | /r/ProgrammerHumor | 23 Jan 2022
    good libraries for parsing: parsec, attoparsec etc.
  • Unity to acquire Parsec for $320m
    4 projects | news.ycombinator.com | 10 Aug 2021
    Thank you! When I read the title I only knew about https://hackage.haskell.org/package/parsec, and for a moment I was very confused
  • Splitting html tags string into list of string
    2 projects | /r/haskell | 1 Jun 2021
    The more "idiomatic" way would be to use a parser library, e.g. parsec, attoparsec, or megaparsec. But even then I think it would be a lot easier to maintain if you could preserve the angle brackets <> in the input.

4koma

Posts with mentions or reviews of 4koma. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-10.
  • Konbini: a new multiplatform parser library
    4 projects | /r/Kotlin | 10 Oct 2022
    As part of my efforts to take 4koma multiplatform, I needed a decent parser library to replace ANTLR. I didn't find one, so I created Konbini.
  • 4koma, the awesomest TOML library, hits version 1.0.1
    2 projects | /r/Kotlin | 19 Apr 2022
    Check it out over at GitHub if you're in need of some TOML processing: https://github.com/valderman/4koma
  • 4koma 0.4.0 released
    1 project | /r/Kotlin | 17 Dec 2021
    I just released version 0.4.0 of 4koma, a spec-compliant, no-nonsense TOML library for Kotlin/JVM. The big highlight of this release is that 4koma now supports serialization of TOML documents and decoding of arbitrary types into TOML.
  • Announcing 4koma, a new TOML library for Kotlin
    1 project | /r/Kotlin | 2 Dec 2021
    I needed a TOML library for a private project but wasn't happy with the current alternatives (all of them are either missing crucial features or has an "everything but the kitchen sink" philosophy I don't particularly like), so I wrote my own: https://github.com/valderman/4koma

What are some alternatives?

When comparing parsec and 4koma you can also consider the following projects:

rustdesk - An open-source remote desktop, and alternative to TeamViewer.

kotlin-shell - Tool for performing shell-like programing in Kotlin

Sunshine - Self-hosted game stream host for Moonlight.

kotlin - The Kotlin Programming Language.

megaparsec - Industrial-strength monadic parser combinator library

jackson-dataformat-csv - Uber-project for (some) standard Jackson textual format backends: csv, properties, yaml (xml to be added in future)

sunshine - Host for Moonlight Streaming Client

Turtle 🐢 - Run shell commands from Kotlin scripts, apps or Gradle tasks with ease.

attoparsec - A fast Haskell library for parsing ByteStrings

better-parse - A nice parser combinator library for Kotlin

parsec-parsers - Orphan instances so you can use `parsers` with `parsec`.

konbini - Parser library for Kotlin