Fs
-
[Node.js] 4. 이벤트 - Node.js 강좌Web/Node.js 2015. 6. 12. 16:35
4. 이벤트 Node.js는 이벤트 기반 비동기 프로그래밍입니다. 1. 이벤트 연결 이벤트 연결에 관한 예제를 살펴봅시다. 12345678910111213141516171819202122// 종료 이벤트 연결process.on('exit', function() { console.log('Goodbye');}); // 예외처리 이벤트 연결process.on('uncaughtException', function(error) { console.log('Exception occur');}); var count = 0;var id = setInterval(function() { count++; // 3번 실행하면 타이머 중지 if (count == 3) { clearInterval(id); } // 강제로 예외 ..
-
[Node.js] 3. 기본 내장 모듈 - Node.js 강좌Web/Node.js 2015. 6. 12. 16:34
Chapter 3. 기본 내장 모듈 Node.js는 다양한 모듈을 지원합니다. https://nodejs.org/docs/latest/api/index.html 위 링크를 통해 Node.js 문서를 참고하실 수 있습니다. 1. os 모듈 가장 먼저 os 모듈에 대해 살펴보도록 하겠습니다. os 모듈의 메서드 - hostname() - type() - platform() - arch() - release() - uptime() - loadavg() - totalmem() - freemem() - cpus() - getNetworkInterfaces() 아래 예제를 통해 직접 메소드의 역할을 살펴봅시다. 123456789101112131415// os 모듈 추출var os = require('os'); co..