Is there a way to pass arguments to a kotlin nodej...
# javascript
s
Is there a way to pass arguments to a kotlin nodejs application?
d
You can use kotlinx-nodejs for nodejs library externals and then you can simply do
process.argv
to get the command line arguments.
👍 2
v
s
thanks