I'm using yargs to catch params passed on node start:
node app.js some_params
And one of the params is path to some location, but there is problem when this path contains file/folder which name contains space.
For now, I resolve this with quoting path "path/to/some location", but I'm wondering is there way to change yargs (or there is another package) to support this type of params, because I found that this is posible with bat scripts.
Thanks