unparser VS Oga

Compare unparser vs Oga and see what are their differences.

unparser

Turn Ruby AST into semantically equivalent Ruby source (by mbj)

Oga

Oga is an XML/HTML parser written in Ruby. (by yorickpeterse)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
unparser Oga
1 1
305 1,162
- -
6.8 4.0
3 months ago 11 months ago
Ruby Ruby
MIT License Mozilla Public License 2.0
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.

unparser

Posts with mentions or reviews of unparser. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-11-14.
  • Future of Ruby – AST Tooling
    4 projects | dev.to | 14 Nov 2021
    There are already some techniques capable of doing just this, by combining Parser with Unparser, but of course such things can only be done on Ruby files read in rather than in a REPL session which is where a lot more fun could happen.

Oga

Posts with mentions or reviews of Oga. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-12-26.
  • How to write a compiler or interpreter in rust
    8 projects | /r/rust | 26 Dec 2021
    In terms of parsing style I suggest sticking with a hand-written recursive-descent parser. Parser generators seem appealing at first, but I always ran into annoying limitations when using them (I wrote one in Ruby myself as well, and used this for this project). Parsing combinators are useful for small inputs, but I find them difficult to use for anything but simple cases.