1. fs 模块(文件系统):
fs 模块提供了对文件系统的访问,包括读取文件、写入文件、创建目录等操作。
const fs = require('fs');
// 读取文件
fs.readFile('file.txt', 'utf-8', (err, data) => {
if (err) {
console.error(err);
return;
}
console.log('File content:', data);
});
// 写入文件
fs.writeFile('newFile.txt', 'Hello, World!', 'utf-8', (err) => {
if (err) {
console.error(err);
return;
}
console.log('File written successfully');
});
2. os 模块(操作系统):
os 模块提供了与操作系统相关的信息,如平台、内存、CPU 等。
const os = require('os');
console.log('Platform:', os.platform());
console.log('Total Memory:', os.totalmem());
console.log('Free Memory:', os.freemem());
3. child_process 模块:
child_process 模块允许你在 Node.js 中创建子进程,执行外部命令。
const { exec } = require('child_process');
// 执行命令
exec('ls -l', (err, stdout, stderr) => {
if (err) {
console.error(err);
return;
}
console.log('Command output:', stdout);
});
4. process 对象:
process 对象提供了有关当前 Node.js 进程的信息,并允许你与进程进行交互。
console.log('Process ID:', process.pid);
console.log('Node.js Version:', process.version);
console.log('Command Line Arguments:', process.argv);
5. path 模块(路径处理):
path 模块提供了处理文件路径的工具函数。
const path = require('path');
const fullPath = path.join(__dirname, 'files', 'example.txt');
console.log('Full Path:', fullPath);
这些模块和功能让 Node.js 成为一个强大的系统级开发工具,可以执行各种系统级别的任务,包括文件操作、进程管理、系统信息获取等。在实际应用中,你可以根据需要选择合适的模块和功能来处理系统级任务。
转载请注明出处:http://www.zyzy.cn/article/detail/4777/Node.js