Popularity
1.3
Declining
Activity
0.0
Stable
6
2
1
Monthly Downloads: 16
Programming language: Elixir
License: MIT License
Tags:
YAML
Latest version: v0.3.0
yomel alternatives and similar packages
Based on the "YAML" category.
Alternatively, view yomel alternatives based on common mentions on social networks and blogs.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai
Do you think we are missing an alternative of yomel or a related project?
README
Yomel
libyaml interface for elixir.
Usage
Currently this only supports decoding.
yaml = """
---
number: 100
name: John
"""
Yomel.decode(yaml) #=> {:ok, [%{"number" => 100, "name" => "John"}]}
Yomel.decode_file("./example.yaml")