Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 872 Bytes

README.md

File metadata and controls

30 lines (25 loc) · 872 Bytes

YAML - YAML Ain't Markup Language

YAML is human readable data serialization language that is used for writing configuration files. YAML file use a .yml or .yaml extenstion.

Eg.

name: Krishna
title: Software Engineer
address:
    city: kolkata
    country: India

Data serialization

The process of converting an object into a stream of bytes to make it easier to save or transmit.

Properties

  • Similar to XML and JSON
  • Only Store data (Not command)
  • Strict syntax - Indentation
  • Store data in key-value paire

Advantages

  • Simple & easy to read
  • Easily convertable to JSON and XML
  • Most language use YAML
  • More powerfull when representing complex data

YAML Tools