Socket
Socket
Sign inDemoInstall

enhanced-yaml

Package Overview
Dependencies
2
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    enhanced-yaml

YAML parser and stringifier that preserves comments and styling


Version published
Weekly downloads
8
increased by300%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

enhanced-yaml

YAML parser and stringifier that preserves comments and styling

npm GitHub Actions Node Workflow License

Documentation


enhanced-yaml is a YAML parser and stringifier written in TypeScript, built on top of the yaml library. Operating on top of yaml's powerful AST, enhanced-yaml is able to preserve as much information from the original source as possible when stringifying, which means that comments and styling can be preserved with very high accuracy.

Features

  • Load YAML documents represented as strings into their corresponding JavaScript values
  • Dump JavaScript values into their corresponding YAML documents represented as strings, while preserving the original comments and styling. The following information from the original source will be preserved:
    • Comments
    • Scalar styles (plain / single quoted / double quoted / folded block / literal block)
    • Map / Sequence styles (block / flow)
    • Anchors
    • Aliases
    • Empty lines before a node
    • The original ordering of Map entries and Sequence items if the preserveOriginalOrdering option is set

Installation

Using Yarn:

yarn add enhanced-yaml

Using npm:

npm install enhanced-yaml

TypeScript type definitions are included out-of-the-box.

Usage

import {safeLoad, safeDump} from 'enhanced-yaml';

const data = `
  # Above: foo
  foo: # Aside: foo
    bar: # Aside: bar
      - 42 # Aside: 42

      # A map
      - a: # Aside: a
          b # Aside: a's value

      # A flow-style sequence
      - [
          # Above: a
          a,
          b,
          c # Aside: c
        ]
`;

safeLoad(data);
// {
//   foo: {
//     bar: ['42', { a: 'b' }, ['a', 'b', 'c']],
//   },
// }

safeDump(
  {
    foo: {
      bar: ['42', ['c', 'd', 'a'], { a: 'c' }],
    },
  },
  {},
  data,
),
// # Above: foo
// foo: # Aside: foo
//   bar: # Aside: bar
//     - 42 # Aside: 42
//
//     # A flow-style sequence
//     - [
//         c, # Aside: c
//         d,
//         # Above: a
//         a
//       ]
//
//     # A map
//     - a: # Aside: a
//         c # Aside: a's value
//

API

The public API consists mostly of the load and dump functions which use the core schema by default and their safe counterparts (safeLoad and safeDump) which use the failsafe schema. The function names were picked to be similar to js-yaml, which is the most widely used JavaScript YAML parser.

enhanced-yaml's internals are exported under the internal namespace, but they shouldn't be considered part of the public API and can be changed at any time.

For more details, please consult the documentation.

Notes:

  • enhanced-yaml's public API isn't tied to the yaml library which is used internally and is only an implementation detail.
  • Not all of yaml's options are currently supported. They will be added gradually after considering how much sense they make in the context of preserving the original source's relevant information.

How it works

enhanced-yaml takes a unique approach to preserving the relevant information from the original source: rather than encoding the original information inside the parsed JavaScript value (which can often cause parts of the information to be lost when the value is manipulated in unintended ways), it works by taking the original YAML source as an argument to the dump function. It then parses it into a document and goes over each YAML node in the updated document and tries to find a matching node in the original document. It then mutates the original node with the minimal relevant updated information, which causes all original references to be preserved, which causes all anchors and aliases to be preserved.

Keywords

FAQs

Last updated on 31 Aug 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc