Skip to content
Node: JSON.parse/stringifygithub.com/sahilkhaire/gox/json

MustStringify

Overview

MustStringify marshals or panics.

Part of the json package — Node.js analog: JSON.parse/stringify.

Signature

go
func MustStringify(v any) string

Compare: Node.js · Standard Go · gox

js
// Typical JSON.parse/stringify pattern in Node.js
go
b, err := json.Marshal(v)
go
import "github.com/sahilkhaire/gox/json"

raw := json.MustStringify(user)

Example

go
import "github.com/sahilkhaire/gox/json"

raw := json.MustStringify(user)

Tips

Import github.com/sahilkhaire/gox/json and call MustStringify directly. See the comparison below for the standard library equivalent.

Standard library alternative

Use the standard library directly:

go
b, err := json.Marshal(v)

Back to json package overview

MIT Licensed · Built for Node.js developers moving to Go