Y
Hacker News
new
|
ask
|
show
|
jobs
by
antonapa
4393 days ago
At the risk of being ridiculed, how would one go about to just take a variable without flag? Ie specialhttpcliutiltool
http://yoururl.com
?
1 comments
nielsbjerg
4392 days ago
That is done by: process.argv.slice(2)[0] The first two arguments are node, and the name of the file you are running. More here:
http://nodejs.org/api/process.html#process_process_argv
link