argv
-
[Node.js] gmail로 이메일 전송하기programming/node.js 2019. 11. 21. 00:00
node.js 이메일 보내기 https://www.w3schools.com/nodejs/nodejs_email.asp Node.js Email Node.js Send an Email The Nodemailer Module The Nodemailer module makes it easy to send emails from your computer. The Nodemailer module can be downloaded and installed using npm: C:\Users\Your Name>npm install nodemailer After you have downloaded the Node www.w3schools.com 해당 튜토리얼을 진행하면 이메일을 보낼 수 있는 방법이 있다. 구글 메일을 사..
-
[node.js] 노드 시작할때 실행 인자 받기programming/node.js 2019. 11. 20. 00:00
실행 인자 받기 시작 시 실행 인자를 받으려면 process.argv로 받을 수 있다. 1 2 3 4 5 6 // node argument.js test1 test2 console.log(process.argv[2]); // test1 console.log(process.argv[3]); // test2 Colored by Color Scripter process.argv process 객체의 argv로 접근하면 시작할 때 뒤에 오는 인자 값들을 순서대로 사용할 수 있다. 1 2 3 4 5 6 7 8 // node argument.js test1 test2 console.log(process.argv[0]); // NODE_PATH\node.exe console.log(process.argv[1]); /..