opts
Opts is a common shorthand for options, especially in computing contexts such as software configuration and command-line interfaces. In general, an option is a parameter that can modify program behavior, toggle features, or supply input values. The term appears in documentation, code, and scripts as a convenient label for a collection of settings.
In command-line interfaces, options are often referred to as flags or switches. They can be short forms
In programming, options are frequently gathered into a single data structure named opts, options, or similar.
Many languages provide dedicated libraries for option parsing, such as Python’s argparse, Ruby’s OptionParser, and Node.js