Which is Better YAML Parsing Libraries?
js-yaml vs yaml vs yamljs vs yaml-front-matter
1 Year
js-yamlyamlyamljsyaml-front-matterSimilar Packages:
What's YAML Parsing Libraries?

YAML parsing libraries are essential tools in web development for reading, writing, and manipulating YAML (YAML Ain't Markup Language) files, which are often used for configuration files, data serialization, and data exchange. These libraries provide developers with the ability to easily convert YAML data into JavaScript objects and vice versa, facilitating seamless integration of YAML into applications. The choice of a specific library can depend on factors such as performance, ease of use, and specific features like front matter support or schema validation.

NPM Package Downloads Trend
Github Stars Ranking
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
js-yaml90,938,6996,287-623 years agoMIT
yaml50,559,2771,272675 kB21a month agoISC
yamljs1,999,657888-537 years agoMIT
yaml-front-matter86,609192-204 years agoMIT
Feature Comparison: js-yaml vs yaml vs yamljs vs yaml-front-matter

Performance

  • js-yaml: js-yaml is optimized for performance and can handle large YAML files efficiently. It balances speed with feature richness, making it suitable for applications that require robust YAML processing.
  • yaml: yaml is designed with performance in mind, utilizing a streaming approach for parsing and dumping, which allows it to handle large datasets with minimal memory overhead, making it one of the fastest options available.
  • yamljs: yamljs provides a straightforward parsing and stringifying process, but its performance may not be as optimized as other libraries when handling very large YAML files.
  • yaml-front-matter: yaml-front-matter is lightweight and efficient, specifically optimized for extracting front matter from YAML files. Its performance is adequate for typical use cases involving metadata extraction.

Feature Set

  • js-yaml: js-yaml supports a wide range of YAML features, including complex data structures, custom types, and schema validation. It is a comprehensive solution for most YAML-related tasks.
  • yaml: yaml focuses on modern YAML features and provides a minimalistic API. It supports advanced features like anchors and aliases, making it suitable for contemporary YAML use cases.
  • yamljs: yamljs offers basic YAML parsing and stringifying capabilities, making it easy to use for simple tasks. However, it lacks some advanced features found in other libraries.
  • yaml-front-matter: yaml-front-matter specializes in parsing front matter, allowing users to easily extract metadata from YAML documents. It is not a full YAML parser but excels in its niche functionality.

Ease of Use

  • js-yaml: js-yaml has a straightforward API that is easy to understand for both beginners and experienced developers. Its documentation is comprehensive, aiding in quick adoption.
  • yaml: yaml provides a clean and intuitive API, making it easy to integrate into projects. Its modern design philosophy ensures that developers can quickly grasp its usage.
  • yamljs: yamljs is simple to use and requires minimal setup, making it accessible for quick YAML manipulation tasks. Its API is straightforward, but it may lack advanced features.
  • yaml-front-matter: yaml-front-matter is specifically designed for simplicity, allowing users to easily extract front matter without needing to understand the full YAML structure, making it user-friendly for non-developers.

Community and Support

  • js-yaml: js-yaml has a large user base and an active community, ensuring that developers can find support and resources easily. Its popularity means that it is regularly maintained and updated.
  • yaml: yaml is gaining traction and has a growing community. While it may not be as widely used as js-yaml, it is well-documented and supported by its maintainers.
  • yamljs: yamljs has a modest community and is less frequently updated. While it is easy to use, developers may find limited resources and support for complex issues.
  • yaml-front-matter: yaml-front-matter has a smaller community focused on specific use cases, but it is well-documented for its intended purpose. Support may be limited compared to more popular libraries.

Compatibility

  • js-yaml: js-yaml is compatible with Node.js and browser environments, making it versatile for both server-side and client-side applications. It supports various YAML versions and is widely used in diverse projects.
  • yaml: yaml is also compatible with Node.js and browser environments, focusing on modern JavaScript features. It is suitable for applications that prioritize performance and simplicity.
  • yamljs: yamljs is compatible with Node.js and can be used in browser environments, though it may not support all modern YAML features as comprehensively as other libraries.
  • yaml-front-matter: yaml-front-matter is designed to work seamlessly with static site generators and other tools that utilize front matter, making it a great choice for projects in that domain.
How to Choose: js-yaml vs yaml vs yamljs vs yaml-front-matter
  • js-yaml: Choose js-yaml for a well-established, widely-used library that provides a robust set of features for parsing and dumping YAML. It is suitable for most general use cases and has a large community for support.
  • yaml: Select yaml if you need a modern, lightweight library that focuses on simplicity and performance. It is designed for speed and efficiency, making it a good choice for applications where performance is critical.
  • yamljs: Consider yamljs for a library that offers both YAML parsing and stringifying capabilities with a focus on simplicity. It is particularly useful for projects that need straightforward YAML manipulation without additional dependencies.
  • yaml-front-matter: Opt for yaml-front-matter if your project requires handling front matter in YAML files, commonly used in static site generators. This library allows you to easily parse and extract metadata from YAML documents.
README for js-yaml

JS-YAML - YAML 1.2 parser / writer for JavaScript

CI NPM version

Online Demo

This is an implementation of YAML, a human-friendly data serialization language. Started as PyYAML port, it was completely rewritten from scratch. Now it's very fast, and supports 1.2 spec.

Installation

YAML module for node.js

npm install js-yaml

CLI executable

If you want to inspect your YAML files from CLI, install js-yaml globally:

npm install -g js-yaml

Usage

usage: js-yaml [-h] [-v] [-c] [-t] file

Positional arguments:
  file           File with YAML document(s)

Optional arguments:
  -h, --help     Show this help message and exit.
  -v, --version  Show program's version number and exit.
  -c, --compact  Display errors in compact mode
  -t, --trace    Show stack trace on error

API

Here we cover the most 'useful' methods. If you need advanced details (creating your own tags), see examples for more info.

const yaml = require('js-yaml');
const fs   = require('fs');

// Get document, or throw exception on error
try {
  const doc = yaml.load(fs.readFileSync('/home/ixti/example.yml', 'utf8'));
  console.log(doc);
} catch (e) {
  console.log(e);
}

load (string [ , options ])

Parses string as single YAML document. Returns either a plain object, a string, a number, null or undefined, or throws YAMLException on error. By default, does not support regexps, functions and undefined.

options:

  • filename (default: null) - string to be used as a file path in error/warning messages.
  • onWarning (default: null) - function to call on warning messages. Loader will call this function with an instance of YAMLException for each warning.
  • schema (default: DEFAULT_SCHEMA) - specifies a schema to use.
    • FAILSAFE_SCHEMA - only strings, arrays and plain objects: http://www.yaml.org/spec/1.2/spec.html#id2802346
    • JSON_SCHEMA - all JSON-supported types: http://www.yaml.org/spec/1.2/spec.html#id2803231
    • CORE_SCHEMA - same as JSON_SCHEMA: http://www.yaml.org/spec/1.2/spec.html#id2804923
    • DEFAULT_SCHEMA - all supported YAML types.
  • json (default: false) - compatibility with JSON.parse behaviour. If true, then duplicate keys in a mapping will override values rather than throwing an error.

NOTE: This function does not understand multi-document sources, it throws exception on those.

NOTE: JS-YAML does not support schema-specific tag resolution restrictions. So, the JSON schema is not as strictly defined in the YAML specification. It allows numbers in any notation, use Null and NULL as null, etc. The core schema also has no such restrictions. It allows binary notation for integers.

loadAll (string [, iterator] [, options ])

Same as load(), but understands multi-document sources. Applies iterator to each document if specified, or returns array of documents.

const yaml = require('js-yaml');

yaml.loadAll(data, function (doc) {
  console.log(doc);
});

dump (object [ , options ])

Serializes object as a YAML document. Uses DEFAULT_SCHEMA, so it will throw an exception if you try to dump regexps or functions. However, you can disable exceptions by setting the skipInvalid option to true.

options:

  • indent (default: 2) - indentation width to use (in spaces).
  • noArrayIndent (default: false) - when true, will not add an indentation level to array elements
  • skipInvalid (default: false) - do not throw on invalid types (like function in the safe schema) and skip pairs and single values with such types.
  • flowLevel (default: -1) - specifies level of nesting, when to switch from block to flow style for collections. -1 means block style everwhere
  • styles - "tag" => "style" map. Each tag may have own set of styles.
  • schema (default: DEFAULT_SCHEMA) specifies a schema to use.
  • sortKeys (default: false) - if true, sort keys when dumping YAML. If a function, use the function to sort the keys.
  • lineWidth (default: 80) - set max line width. Set -1 for unlimited width.
  • noRefs (default: false) - if true, don't convert duplicate objects into references
  • noCompatMode (default: false) - if true don't try to be compatible with older yaml versions. Currently: don't quote "yes", "no" and so on, as required for YAML 1.1
  • condenseFlow (default: false) - if true flow sequences will be condensed, omitting the space between a, b. Eg. '[a,b]', and omitting the space between key: value and quoting the key. Eg. '{"a":b}' Can be useful when using yaml for pretty URL query params as spaces are %-encoded.
  • quotingType (' or ", default: ') - strings will be quoted using this quoting style. If you specify single quotes, double quotes will still be used for non-printable characters.
  • forceQuotes (default: false) - if true, all non-key strings will be quoted even if they normally don't need to.
  • replacer - callback function (key, value) called recursively on each key/value in source object (see replacer docs for JSON.stringify).

The following table show availlable styles (e.g. "canonical", "binary"...) available for each tag (.e.g. !!null, !!int ...). Yaml output is shown on the right side after => (default setting) or ->:

!!null
  "canonical"   -> "~"
  "lowercase"   => "null"
  "uppercase"   -> "NULL"
  "camelcase"   -> "Null"

!!int
  "binary"      -> "0b1", "0b101010", "0b1110001111010"
  "octal"       -> "0o1", "0o52", "0o16172"
  "decimal"     => "1", "42", "7290"
  "hexadecimal" -> "0x1", "0x2A", "0x1C7A"

!!bool
  "lowercase"   => "true", "false"
  "uppercase"   -> "TRUE", "FALSE"
  "camelcase"   -> "True", "False"

!!float
  "lowercase"   => ".nan", '.inf'
  "uppercase"   -> ".NAN", '.INF'
  "camelcase"   -> ".NaN", '.Inf'

Example:

dump(object, {
  'styles': {
    '!!null': 'canonical' // dump null as ~
  },
  'sortKeys': true        // sort object keys
});

Supported YAML types

The list of standard YAML tags and corresponding JavaScript types. See also YAML tag discussion and YAML types repository.

!!null ''                   # null
!!bool 'yes'                # bool
!!int '3...'                # number
!!float '3.14...'           # number
!!binary '...base64...'     # buffer
!!timestamp 'YYYY-...'      # date
!!omap [ ... ]              # array of key-value pairs
!!pairs [ ... ]             # array or array pairs
!!set { ... }               # array of objects with given keys and null values
!!str '...'                 # string
!!seq [ ... ]               # array
!!map { ... }               # object

JavaScript-specific tags

See js-yaml-js-types for extra types.

Caveats

Note, that you use arrays or objects as key in JS-YAML. JS does not allow objects or arrays as keys, and stringifies (by calling toString() method) them at the moment of adding them.

---
? [ foo, bar ]
: - baz
? { foo: bar }
: - baz
  - baz
{ "foo,bar": ["baz"], "[object Object]": ["baz", "baz"] }

Also, reading of properties on implicit block mapping keys is not supported yet. So, the following YAML document cannot be loaded.

&anchor foo:
  foo: bar
  *anchor: duplicate key
  baz: bat
  *anchor: duplicate key

js-yaml for enterprise

Available as part of the Tidelift Subscription

The maintainers of js-yaml and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more.