The argument vector is the list of arguments passed to the program when it is run. It is available as Bun.argv
.
console.log(Bun.argv);
Running this file with arguments results in the following:
bun run cli.tsx --flag1 --flag2 value
[ '/path/to/bun', '/path/to/cli.ts', '--flag1', '--flag2', 'value' ]