Created
August 23, 2015 05:43
-
-
Save sorie/cf578d7843d287fa013d to your computer and use it in GitHub Desktop.
node.js - 동기화
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require('fs'); | |
console.log('파일 읽기 프로세스 시작...'); | |
//file System - readFileSync() 사용 | |
var data = fs.readFileSync('files/user.json'); | |
console.log('데이터:' + data); | |
console.log('파일 읽기 프로세스끝.'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment