Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

dart-archive/yaml

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

194 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status Pub Package package publisher

A parser for YAML.

Usage

Use loadYaml to load a single document, or loadYamlStream to load a stream of documents. For example:

import 'package:yaml/yaml.dart'; main() { var doc = loadYaml("YAML: YAML Ain't Markup Language"); print(doc['YAML']); }

This library currently doesn't support dumping to YAML. You should use json.encode from dart:convert instead:

import 'dart:convert'; import 'package:yaml/yaml.dart'; main() { var doc = loadYaml("YAML: YAML Ain't Markup Language"); print(json.encode(doc)); }

About

A Dart YAML parser.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages