Loading...
「ツール」は右上に移動しました。
利用したサーバー: natural-voltaic-titanium
3いいね 107回再生

javascript - How do I pass command line arguments to a Node.js program and receive them?

I have a web server written in Node.js and I would like to launch with a specific folder. I'm not sure how to access arguments in JavaScript. I'm running node like this:
$ node server.js folder

here server.js is my server code. Node.js help says this is possible:
$ node -h
Usage: node [options] script.js [arguments]

How would I access those arguments in JavaScript? Somehow I was not able to find this information on the web.
the node docs on handling command line args:: nodejs.org/docs/latest/api/process.html#process_pr…

コメント