JavaScript YAML Parser [closed]

Solution 1:

JS-YAML parser works in browser. Here is an online demonstration : https://nodeca.github.io/js-yaml. Though, it's primary goal is node.js, and browser version was done just for fun :)

Solution 2:

Here is one that I found. Not sure of how much of the spec this meets, but it suited my needs.

https://github.com/jeremyfa/yaml.js

Solution 3:

sorry for answering an old post, but I bumped into the same problem as you.

None of the javascript YAML parsers available satisfied my needs so I developed my own: It is available here: http://code.google.com/p/javascript-yaml-parser/

Hope it helps somebody :)

Cumps, Diogo