Skip to content

argv

const argv: 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 arg2
console.log(argv) // ["arg1", "arg2"]