Replies: 1 comment 2 replies
-
How does this differ from a (de)serialization library? it's not obvious after taking a quick peek at this. There are definitely quite a few of those floating around (gotta love how easy D makes them to write!), but I don't think there's any out there that really stand out. I've written my own, too, but I don't care to support it. So I'd definitely say the need exists and something like that already exists as well, but nothing currently stands out |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey there,
My team has had the need for a config parser for quite some time.
D-YAML has been extremely useful when it comes to parsing YAML itself, but we missed the last leg, that is, something that converts a
Node
into another aggregate.After doing it manually for a while, I finally set some time aside and wrote a mini framework based on D-YAML.
It currently lives here: https://github.com/bosagora/agora/blob/c812bdf34ab73b3218f4681672ad4386fd47178f/source/agora/common/Config.d
With attributes being defined here: https://github.com/bosagora/agora/blob/c812bdf34ab73b3218f4681672ad4386fd47178f/source/agora/common/ConfigAttributes.d
We're still improving on it, e.g. bosagora/agora#2423 , but it has proven to work wonderfully well.
Before I go and make it independent and announce it on the forums, I wanted to check if other people had this need, and if something like this already existed ?
Beta Was this translation helpful? Give feedback.
All reactions