@jcubic/lily
v0.5.0
Published
Very simple option parser inspired by YARGS with no dependencies
Maintainers
Readme
LILY
LILY is very simple option parser inspired by YARGS with no dependencies
LILY stands for LILY Is Like Yargs
In fact it's inspired by yargs-parser used by Yargs to parse the options.
Installation
npm install --save @jcubic/lilyUsage
#!/usr/bin/env node
const lily = require('@jcubic/lily');
// or
import lily from '@jcubic/lily';
const options = lily(process.argv.slice(2), {boolean: ['b']});if you run the script with:
./script -l 10 --hello 20 -asb one two threeyou will get this object as result:
{
"_": [
"one",
"two",
"three"
],
"l": "10",
"hello": "20",
"a": true,
"s": true,
"b": true
}License
Copyright (C) 2020-2025 Jakub T. Jankiewicz
Released under MIT license
