MCPcopy Index your code
hub / github.com/ghodss/yaml

github.com/ghodss/yaml @v1.0.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v1.0.0 ↗ · + Follow
45 symbols 75 edges 3 files 19 documented · 42% 106 cross-repo links
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

YAML marshaling and unmarshaling support for Go

Build Status

Introduction

A wrapper around go-yaml designed to enable a better way of handling YAML when marshaling to and from structs.

In short, this library first converts YAML to JSON using go-yaml and then uses json.Marshal and json.Unmarshal to convert to or from the struct. This means that it effectively reuses the JSON struct tags as well as the custom JSON methods MarshalJSON and UnmarshalJSON unlike go-yaml. For a detailed overview of the rationale behind this method, see this blog post.

Compatibility

This package uses go-yaml and therefore supports everything go-yaml supports.

Caveats

Caveat #1: When using yaml.Marshal and yaml.Unmarshal, binary data should NOT be preceded with the !!binary YAML tag. If you do, go-yaml will convert the binary data from base64 to native binary data, which is not compatible with JSON. You can still use binary in your YAML files though - just store them without the !!binary tag and decode the base64 in your code (e.g. in the custom JSON methods MarshalJSON and UnmarshalJSON). This also has the benefit that your YAML and your JSON binary data will be decoded exactly the same way. As an example:

BAD:
    exampleKey: !!binary gIGC

GOOD:
    exampleKey: gIGC
... and decode the base64 data in your code.

Caveat #2: When using YAMLToJSON directly, maps with keys that are maps will result in an error since this is not supported by JSON. This error will occur in Unmarshal as well since you can't unmarshal map keys anyways since struct fields can't be keys.

Installation and usage

To install, run:

$ go get github.com/ghodss/yaml

And import using:

import "github.com/ghodss/yaml"

Usage is very similar to the JSON library:

package main

import (
    "fmt"

    "github.com/ghodss/yaml"
)

type Person struct {
    Name string `json:"name"` // Affects YAML field names too.
    Age  int    `json:"age"`
}

func main() {
    // Marshal a Person struct to YAML.
    p := Person{"John", 30}
    y, err := yaml.Marshal(p)
    if err != nil {
        fmt.Printf("err: %v\n", err)
        return
    }
    fmt.Println(string(y))
    /* Output:
    age: 30
    name: John
    */

    // Unmarshal the YAML back into a Person struct.
    var p2 Person
    err = yaml.Unmarshal(y, &p2)
    if err != nil {
        fmt.Printf("err: %v\n", err)
        return
    }
    fmt.Println(p2)
    /* Output:
    {John 30}
    */
}

yaml.YAMLToJSON and yaml.JSONToYAML methods are also available:

package main

import (
    "fmt"

    "github.com/ghodss/yaml"
)

func main() {
    j := []byte(`{"name": "John", "age": 30}`)
    y, err := yaml.JSONToYAML(j)
    if err != nil {
        fmt.Printf("err: %v\n", err)
        return
    }
    fmt.Println(string(y))
    /* Output:
    name: John
    age: 30
    */
    j2, err := yaml.YAMLToJSON(y)
    if err != nil {
        fmt.Printf("err: %v\n", err)
        return
    }
    fmt.Println(string(j2))
    /* Output:
    {"age":30,"name":"John"}
    */
}

Core symbols most depended-on inside this repo

fillField
called by 2
fields.go
Contains
called by 2
fields.go
yamlToJSON
called by 2
yaml.go
indirect
called by 1
fields.go
typeFields
called by 1
fields.go
dominantField
called by 1
fields.go
cachedTypeFields
called by 1
fields.go
isValidTag
called by 1
fields.go

Shape

Function 24
Struct 10
Method 7
TypeAlias 4

Languages

Go100%

Modules by API surface

fields.go22 symbols
yaml_test.go17 symbols
yaml.go6 symbols

For agents

$ claude mcp add yaml \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact