Popularity
1.1
Declining
Activity
0.0
Stable
6
1
1
Monthly Downloads: 18
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.
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 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")