I run the command:
npm run a_script --oki="odo"
How do I get the value of oki in my script? I'd like to use it for example: if(process.argv.oki === 'odo').
I tried:
console.log(process.argv);
It doesn't show up there.
I read https://docs.npmjs.com/cli/run-script and it doesn't give an example.