객체의 내용을 반복문으로 읽기 const team = { top: "minxd", mid: "Jin", jungle: "copotter" } for (var i in team) { console.log(`${i} : ${team[i]}`); } Result : top : minxd mid : Jin jungle : copotterfor문 안에서 i 는 team 객체의 속성명(index)이 된다. '객체명[index]' 의 형태로 각각의 속성값을 불러올 수 있다.
File System fs.readDir 파일 목록 가져오기 const fs = require("fs"); fs.readDir(_dir, (err, files) => { // _dir 디렉토리의 파일 목록을 files라는 이름의 배열로 가져옴. if (err) throw err; }); NPM (Node Package Manager) NPM에서 패키치 설치하기 npm install [패키지명] -g -g : 모든 경로에서 해당 패키지를 실행할 수 있게 함 PM2 (Process Manager 2) 'Q' Key : 현재 기능에서 나가기 pm2 start main.js main.js를 pm2로 실행 끝에 "--watch" : 소스코드 변경사항 실시간 반영 pm2 monit 관련 프로세스 및 로그 출력 pm..
Console Argument const args = process.argv; console.log(args); /* "node exam.js minseok" 으로 실행 실행결과 [ 'C:\\Program Files\\nodejs\\node.exe', 'D:\\dev\\study\\study\\nodejs\\exam.js', 'minseok' ] */ url.parse(request.url, true) Url { protocol: null, slashes: null, auth: null, host: null, port: null, hostname: null, hash: null, search: '?id=JavaScript', query: [Object: null prototype] { id: 'JavaS..
화살표 함수(Arrow Function) let _sum = (a, b) => { return a + b; }; // 기본 형태 let _sum2 = (a, b) => a + b; // 코드가 한줄일 경우 중괄호 생략 가능 // a + b를 return함 let getCircle = a => a * a * Math.PI; // 매개변수가 하나일 경우 괄호 생략 가능 변수관련 참고 exam1.js let _value = 1234; (() => { _value = 4321; console.log(_value); })(); console.log(_value); // 결과값 // 4321 // 4321 exam2.js let _value = 1234; (() => { let _value = 4321; conso..
- Total
- Today
- Yesterday
- Command
- sql
- ES6
- highlight-js
- react
- SQL JOIN
- props
- pm2
- reactjs
- 삼항연산자
- Object
- npm
- State
- blog
- terminal
- code-block
- syntax-highlight
- useState
- 논리연산자
- javascript
- file system
- react hook
- mark-down
- OOP
- ignore
- nodejs
- useEffect
- daemon
- Database
- function
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |