os(운영체제)접근 가능
const os = require('os');
os.cpus(); //cpu정보 가져오기
path 경로처리 join
const path = require('path');
path.join(__dirname, 'test.js');
// 현재 폴더 경로와 'test.js'를 합쳐줌.
// join은 '/test.js' 절대 경로를 무시함
path.join(__dirname, .. , 'test.js');
// 현재 폴더 부모 경로와 'test.js'를 합쳐줌.
path 경로처리 resolve
const path = require('path');
path.resolve(__dirname, '/test.js');
// resolve는 절대경로를 인식함
// 최상위 루트의 test.js, '/'가 붙어있으면 최상위 루트 절대경로
// C:/var.js
path.resolve(__dirname, .. , 'test.js');
// 현재 폴더 부모 경로와 'test.js'를 합쳐줌.