Popularity
1.4
Declining
Activity
0.0
Stable
6
2
1

Monthly Downloads: 36
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.

Do you think we are missing an alternative of yomel or a related project?

Add another 'YAML' Package

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")