コンテンツにスキップ

Serializer

このコンテンツはまだ日本語訳がありません。

Converts a data structure into a string using a specified format.

Converts a data structure (like a map or a list) into a text-based string format. This is useful for saving data to a file or sending it over a network.

  • JSON: JavaScript Object Notation. Widely used and human-readable. Output is indented for clarity.
  • YAML: YAML Ain’t Markup Language. A human-friendly data serialization standard.
  • TOML: Tom’s Obvious, Minimal Language. A minimal configuration file format.
  • INI: A common configuration file format.
PortDescription
Exec
Executes the node.
Object
The data structure to serialize.
Format
The serialization format to use.
PortDescription
Success
Executes if serialization is successful.
Error
Executes if serialization fails.
Output
The serialized string.

ID: core/serializer@v1