Created
January 10, 2014 03:00
-
-
Save KJlmfe/8346301 to your computer and use it in GitHub Desktop.
Revisions
-
KJlmfe created this gist
Jan 10, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ var fs = require('fs'); //同步读取文件内容 var data = fs.readFileSync('Hello.txt','utf-8'); console.log(data); console.log('End'); /* 运行结果: Hello World End */