Popularity
1.5
Declining
Activity
0.0
Stable
6
2
1
Monthly Downloads: 38
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.
-
yaml_elixir
Yaml parser for Elixir based on native Erlang implementation
Elixir and Phoenix Application Security Platform
Replace Snyk, reCaptcha, and Cloudflare bot defense with the only application security platform built for Elixir and Phoenix.
Promo
paraxial.io
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")