Skip to content

Instantly share code, notes, and snippets.

@KJlmfe
Created January 10, 2014 03:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save KJlmfe/8346301 to your computer and use it in GitHub Desktop.
Save KJlmfe/8346301 to your computer and use it in GitHub Desktop.
Node同步执行
var fs = require('fs');
//同步读取文件内容
var data = fs.readFileSync('Hello.txt','utf-8');
console.log(data);
console.log('End');
/*
运行结果:
Hello World
End
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment