Skip to content

Instantly share code, notes, and snippets.

@sorie
Created August 23, 2015 05:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sorie/cf578d7843d287fa013d to your computer and use it in GitHub Desktop.
Save sorie/cf578d7843d287fa013d to your computer and use it in GitHub Desktop.
node.js - 동기화
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