“Node.js process.argv” Code-Antworten

process.argv

>>node myprogram.js firstarg secondarg

process.argv[0] == "path/to/node"

process.argv[1] == "path/to/myprogram.js"

process.argv[2] == "firstarg"

process.argv[3] == "secondarg"

//process.argv[0] same as process.argv.slice(0)
Ian Selley

Node.js process.argv

// Command line values: node web.js testing several features
console.log(process.argv[2]); // 'features' will be printed
Magnificent Monkey Adi

Ähnliche Antworten wie “Node.js process.argv”

Fragen ähnlich wie “Node.js process.argv”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen