node.js 실행인자
Node.js process.argv Property
The process.argv property
is an inbuilt application programming interface of the process module which is used to get the arguments passed to the node.js process when run in the command line.
Syntax:
process.argv
Return Value:
This property returns
an array
containing the arguments passed to the process when run it the command line. The first element is theprocess execution path
and the second element isthe path for the js file.
Example:
const process = require('process');
console.log(process.argv);
Command to run the code:
node index.js extra_argument1 extra_argument2 3
Output:
[
'C:\\Program Files\\nodejs\\node.exe',
'C:\\nodejs\\g\\process\\argv_1.js',
'extra_argument1',
'extra_argument2',
'3'
]
Example2:
const process = require('process');
var args = process.argv;
console.log('number of arguments is "+args.length);
args.forEach((val, index) => {
console.log(`${index}: ${val}`);
});
Command to run the code:
node index.js extra_argument1 extra_argument2 3
Output:
number of arguments is 5
0: C:\Program Files\nodejs\node.ext
1: C:\nodejs\g\process\argv_2.js
2: extra_argument1
3: extra_argument2
4: 3
Author And Source
이 문제에 관하여(node.js 실행인자), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ragnarok_code/node.js-실행인자저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)