node
-
[nodejs] github 커밋 카운터 프로그램 3programming/node.js 2019. 12. 2. 15:51
커밋 카운터 1 커밋 카운터 2 추가 기능 1. 실행 시 인자로 여러 아이디 받아서, 아이디별 카운트. 실행 시 3번째 인자(argv[2])를 ", "를 기준으로 여러 아이디 구분한다. 테스트용으로 ABC,DEF,GHI를 넣어봤으나 이미 있는 아이디였다. 아예 없는 아이디면 에러로 표시된다. 2. statusCode 200 아니면 에러 처리. request의 response.statusCode로 판단한다. statusCode가 200이 아닐경우 에러로 판단한다.
-
[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]); /..
-
[Node.js] Node.js w3schools Tutorial - Day.3programming/node.js 2019. 11. 19. 00:00
*해당 내용은 https://www.w3schools.com/nodejs/ 의 튜토리얼을 따라 하며 정리하는 글입니다. [Day1] [Day2] What is NPM? NPM은 Node.js를 위한 패키지 매니저다. Node.js가 설치될 때, NPM은 같이 설치된다. node -v로 node.js 버전이 확인 가능하다면(node.js가 설치되었다면) npm -v로 설치된 npm버전도 확인 가능하다(npm도 설치되었다.) Download a Package 설치된 node.js에서 아래 코드를 실행시켜 보자. 1 2 3 var uc = require('upper-case'); console.log(uc("hello world!!")); 모듈을 찾을 수 없다고 뜰 것이다. Error: Cannot find ..
-
node.js 설치 방법programming/node.js 2019. 10. 15. 00:16
node.js 설치 방법 정리 https://nodejs.org/ko/download/ 다운로드 | Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org 한국어로 번역된 node.js 다운로드 페이지이다. 따라 들어가면 아래와 같은 페이지가 나온다. 플랫폼에 맞게 LTS 버전으로 설치를 하면된다. 설치시에는 모두 next를 하고 라이센스 동의를 확인해주면 문제없이 기본으로 설치된다. 기본 설치장소는 program Files > nodejs 폴더가 생성 될 것이다. 설치 확인 설치 되었는지 확인을 하기 위해선, cmd창을 열어서 확인 할 수 있다. (window 키 + r > cmd 입력 후 엔터..