DEV Community
dev.to › missamarakay › yaml-vs-xml-vs-json-for-configuration-347g
YAML vs. XML vs. JSON for Configuration - DEV Community
April 6, 2020 - Not mentioning IDEs do understand XML better... I personally like having autocomplete and suggestions. ... Hey, that's me ! ... I like YAML but it often adds quite a bit of overhead as it's not as universally supported as JSON (many languages will need a library, some basic text editors won't recognize it, you can't pass it directly to your front-end, you can't display it nicely in Firefox...).
When to use XML, JSON, YAML, and TOML - Tools - TMPDIR
We have many options for serialization formats – when do we use what? A few thoughts prompted by this discussion over at the LVGL community. I generally don’t like XML for things like config, but I like it for a UI for several reasons: UI’s tend to be deeply nested. More on community.tmpdir.org
XML is better than YAML. Hear me out...
YAML exists for relatively simple data structures, like config files. I sure hope people aren’t using it for complex ones. This just seems like a no brainer to me. More on reddit.com
YAML vs JSON vs XML?
I'm working on a 2D RPG in Java using LibGdx, and need to find a way to store my game data. The things I've considered are YAML, JSON and XML. I only have experience in working with XML, but the others can't be too hard to learn. What I need to achieve is being able to define items to be generated b More on gamedev.net
XML vs JSON vs Other: Which do you prefer for data storage and why?
There is not much difference between JSON and XML but JSON is much less verbose. Several things that would make XML can do better. Allows comments (not really needed in production). Allows validation through schema. (Probably the only real benefit over JSON). Allows CDATA (free text). (Not much of a big deal to encoded text in JSON). More on reddit.com
Videos
19:12
XML, JSON, YAML and Linux Networking - a start - YouTube
23:13
Data Formats: XML, JSON, and YAML - YouTube
11:12
Comparing XML, JSON, and YAML (DevNet) - YouTube
07:46
2. Compare XML JSON YAML - YouTube
01:03
XML vs JSON vs YAML | Data Formats Explained | DevNet Associate ...
Martin Ueding
martin-ueding.de › posts › json-vs-yaml-vs-toml
JSON vs. YAML vs. TOML | Martin Ueding
August 31, 2022 - Another downside of JSON is that it doesn't support comments. TOML and YAML do that. However, it is hard to re-write such a file with comments and change values while keeping most of the comments intact.
Barenakedcoder
barenakedcoder.com › blog › 2020 › 03 › config-files-ini-xml-json-yaml-toml
Config Files: INI, XML, JSON, YAML, TOML | BareNakedCoder.com
March 15, 2020 - Note that VSCode has extended JSON to JSONC or “JSON with comments”. But until this becomes widely used, stay away from JSON. Also for complex data, there is YAML (wiki). It was originally intended as a markup language (like HTML) but later repurposed for data.
Celerdata
celerdata.com › glossary › yaml-json-and-xml-a-practical-guide-to-choosing-the-right-format
YAML JSON and XML A Practical Guide to Choosing the Right Format
June 5, 2025 - Each serialization format represents structured data in a particular way. Some emphasize human readability (YAML), others optimize for speed and simplicity (JSON), and some offer rich structure and validation (XML).
Reddit
reddit.com › r/programming › xml is better than yaml. hear me out...
r/programming on Reddit: XML is better than YAML. Hear me out...
December 10, 2023 - There is no holy grail for data formats. I can find problems with all of them. The best data format is one that suits your purpose. YAML is more than sufficient for a good number of problems. XML, Bencode, Cue, Toml, JSON, BSON, and more all have their place and all have their issues.
W3Schools
w3schools.com › js › js_json_xml.asp
JSON vs XML
XML is much more difficult to parse than JSON.
Threads
threads.com › @dan_nanni › post › C_nSxmquiVX
Data serialization formats: XML vs JSON vs YAML XML, JSON, and YAML are widely used data serialization formats, each offering unique structures and syntax suited for storing, exchanging, and representing data across different systems and applications Here are examples and feature comparison of these three formats 😎👇 DevOps
September 7, 2024 - Data serialization formats: XML vs JSON vs YAMLXML, JSON, and YAML are widely used data serialization formats, each offering unique structures and syntax suited for storing, exchanging, and representing data across different systems and applicationsHere are examples and feature comparison of these three formats 😎👇 DevOps
Codú
codu.co › urdonohue-020 › json-yaml-xml-what-the-hell-kwdcdeci
JSON, YAML, XML... What the hell?! | by Ulrike R. Donohue | Codú
November 8, 2023 - So there you have it! A very short and rudimentary summary of three important file types, JSON, YAML, and XML, used to 'package' data with the specific purpose of data transfer. The less syntax in the file the more efficient the transfer. I should also add, that these file types are generally intended for transferring relatively small amounts of data.
Note Arena
notearena.com › home › yaml vs json vs xml
YAML vs JSON vs XML - Note Arena
March 1, 2023 - YAML, JSON, and XML are all useful formats for different purposes. YAML is best suited for configuration files and data exchange between programming languages due to its simplicity and readability. JSON is best suited for data exchange between programming languages due to its compact size and ...
JavaScript in Plain English
javascript.plainenglish.io › yaml-vs-json-vs-xml-what-to-choose-4c7a72417ff4
YAML vs JSON vs XML: Which One to Choose? | by Sumeet Bhalla | JavaScript in Plain English
November 3, 2021 - XML stands for eXtensible Markup Language and is (like the name suggests) a markup language unline JSON or YML.
GameDev.net
gamedev.net › forums › topic › 646884-yaml-vs-json-vs-xml
YAML vs JSON vs XML? - For Beginners - GameDev.net
July 17, 2013 - In other words, you can use XML to define complex, hierarchical, rigid, versionable data formats, and then use them to exchange data using that format; JSON or YAML is structured in a sense, but only by convention -- your program only understands it as well as it's kept up with the latest changes, and no alarm-bells go off when unexpected data is found.
SnapLogic
snaplogic.com › home › blog › json vs yaml: what’s the difference, and which one is right for your enterprise?
JSON vs YAML: What's the Difference, and Which One Is Right for Your Enterprise?
September 12, 2024 - Because it’s a text-based format that uses JavaScript syntax, JSON is fairly easy for humans to read and write, but it’s also easy for machines to parse and generate. This data serialization format was developed around the same time as YAML. It was first developed in 2001 and took off as a lighter format than XML (Extensible Markup Language), which is an older data format used for storing or transferring data.