Node.js os库没有提供所需的输出

时间:2018-06-18 22:37:36

标签: node.js node-modules

console.log('Starting App');

const fs = require ('fs');
const os = require ('os');

var user = os.userInfo();


fs.appendFileSync('message.txt',  'Hello  ${user.username}!');

1 个答案:

答案 0 :(得分:1)

问题不在于os,问题是你没有使用template literals,它应该用反引号(`)包装,而不是用单引号包装。

fs.appendFileSync('message.txt',  `Hello  ${user.username}!`);
//                                ` instead of '