Simplicity and minimalism is at the heart of Confetti. Some formats, like YAML, are very complicated (look at the size of its specification!) whereas Confetti’s spec is simple and minimal, and it can be learned in minutes.
Confetti is typeless by design and its syntax is composable. Confetti provides the atoms necessary to create everything from simple configuration, to textual file formats, to lightweight scripting. Check out the various examples for inspiration.
-
Unopinionated: Confetti lets you define custom keywords, like
on
andoff
, and tristates, likeyes
,no
, andmaybe
. This is in contrast to formats, like TOML, which mandate the keywordstrue
andfalse
. -
Localization Friendly: Confetti lets you write configuration files in your native language. This is in contrast to formats, like JSON, which requires the English words
null
,true
, andfalse
, and Western digits0
through9
. -
Extensions Encouraged: Much like how Markdown has different flavors, you are encouraged to create unique flavors of Confetti. The specification defines the common language and its annex includes extensions that are compatible with the grammar.
Feature Comparison#
Here’s how Confetti compares to popular formats:
Confetti | INI | JSON | TOML | |
---|---|---|---|---|
Specification |
||||
Typeless |
||||
Localization Friendly |
1 |
2 |
2 |
|
Unicode Literals |
1 |
|||
Multiline Literals |
||||
Comments |
||||
Hierarchical Structures |
||||
Intended Use Case |
1 INI has no specification and therefore support for internalization and Unicode are implementation dependent.
2 JSON and TOML mandate the English words true
and false
and Western digits 0
through 9
.