Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.awfixer.me/llms.txt

Use this file to discover all available pages before exploring further.

The argument vector is the list of arguments passed to the program when it is run. It is available as JSTime.argv.
console.log(JSTime.argv);

Running this file with arguments results in the following:
$ jstime run cli.tsx --flag1 --flag2 value
[ '/path/to/jstime', '/path/to/cli.ts', '--flag1', '--flag2', 'value' ]

To parse argv into a more useful format, consider using minimist or commander.