[Node] os, path

bunny.log·2022년 7월 30일
0

Node

목록 보기
3/5
post-custom-banner

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'를 합쳐줌.
profile
https://github.com/nam-yeun-hwa
post-custom-banner

0개의 댓글