Description
Hi guys,
We are currently evaluating a CLI utility to use with goxygen (a generator of web projects). I like the idea of a light-weight CLI utility that is straight forward and doesn't bring unneeded dependencies. That's why I thought we could try Clir. But I went through the Clirs documentation/examples and I can't figure out if it is capable of covering our use-case.
Soon we'll have to implement something like this:
goxygen init --frontend angular --db mysql my-new-app
or
goxygen init --frontend=angular --db=mysql my-new-app
The options for the flags would have to be validated against a predefined set of parameters. Say for the --frontend
flag the options could only be angular
,react
and vue
, etc.
Q: Can you please tell me if we can achieve this with Clir? Or how much of it can already be handled by the lib?
Thank you.
Best regards,
Sasha.