←back to thread

67 points hgs3 | 2 comments | | HN request time: 0s | source

Hello everyone, I created Confetti: a simple, typeless, and localization-friendly configuration language designed for human-editable configuration files.

In my opinion, JSON works well for data interchange, but it's overused for configuration, it's not localization-friendly, and it's too syntactically noisy. INI is simple but lacks hierarchical structures and doesn't have a formal specification. Confetti is intended to bridge the gap.

I aim to keep Confetti simple and minimalistic, while encouraging others to extend it. Think of it like Markdown for configuration files: there's a core specification, but your welcome to create your own variations that suit your needs.

Show context
eviks ◴[] No.43556120[source]
Nice that Unicode is supported, and the localization is a nice twist

Are there any examples of what's possible with extensions?

replies(1): >>43558186 #
1. hgs3 ◴[] No.43558186[source]
The "expression arguments extension" is intended to allow for 'richer' expressions wherever an argument is expected. In the following example, it shows how you might use it if you need basic control flow in your configuration:

    if (x > y) {
        print "x is greater than y"
    }
It's freeform so your application would need to interpret what's between the '(' and ')'.

The "punctuator arguments extension" is the one I'm most anxious about since it might be too flexible, but I'd like to hear feedback. It lets you define your own domain-specific punctuators for your configuration so, for example, you might decide that "=" is a punctuator which means the following is equivalent:

    x = 123
    x=123
Under standard interpretation, if you wanted "=" it be distinct from "x" and "123", then white space would be required.

The "comment syntax extension" is just C style comments.

My goal was to keep the language basic while encouraging custom flavors. If an extension becomes ubiquitous, then - depending on what it is - it might merge with the standard or be added to the annex.

replies(1): >>43559249 #
2. eviks ◴[] No.43559249[source]
Understand being anxious about flexibility, but that's also potentially one of the coolest differentiators! Would be interesting to see what people come up with...