argv
constargv:string[]
Defined in: packages/pythonlib/src/sys.ts:23
Command line arguments passed to the script. Unlike Python, this excludes the Node.js executable and script path.
Example
// node script.js arg1 arg2console.log(argv) // ["arg1", "arg2"]