Node.js 강좌 자료] Non Blocking Code
Node.js 강좌 자료] Non Blocking Code
실무개발자를위한 실무교육 전문교육센터학원
www.oraclejava.co.kr에 오시면 보다 다양한 강좌를 보실 수 있습니다.
Non Blocking Code
- 데이터 파일 작성 (input.txt - 생략)
- 프로그램 코드 (sunc-test.js)
const fs = require('fs')
fs.readFile('input.txt', function(err.data){
console.log(data.toString())
})
console.log('Program Ended')
- 프로그램 실행
$ node sync-test.js
- 실행 결과
Program Ended
This is test content1
This is test content2
'자바' 카테고리의 다른 글
Node.js 강좌 자료]Promise 사용하기 (0) | 2017.11.19 |
---|---|
Node.js 강좌 자료] 화살표 연산자 사용하기 (0) | 2017.11.19 |
Node.js 강좌 자료] Blocking Code (0) | 2017.11.19 |
Node.js 강좌 자료] Callback? (0) | 2017.11.19 |
Node.js 강좌 자료] 파일 시스템 사용 예제 (0) | 2017.11.19 |