同步读取文件

对于任何文件操作,你将需要文件系统模块:

const fs = require('fs');

读一个字符串

fs.readFileSync 的行为与 fs.readFile 类似,但不会在同步完成时进行回调,因此会阻塞主线程。大多数 node.js 开发人员更喜欢异步变体,它们几乎不会导致程序执行延迟。

如果指定了 encoding 选项,则返回一个字符串,否则返回 Buffer

// Read a string from another file synchronously
let content;
try {
  content = fs.readFileSync('sync.txt', { encoding: 'utf8' });
} catch(err) {
  // An error occurred
  console.error(err);
}