[node.js] 모듈 종류


[node.js] 모듈 종류

<모듈 종류> 커스텀모듈 : 개인이 설정한 모듈 코어모듈 : node.js 기본적으로 지원해 주는모듈 const fs = require("fs"); // 코어모듈 파일시스템 관련 let fileList = fs.readdirSync("."); console.log(fileList); fs.writeFileSync("New", "hello node.js"); const os = require("os"); //운영체제 코어 모듈 console.log(os.cpus()); 3. 서드파티모듈 : 특정 단체나 회사에서 만든 모듈 npm install 로 설치 가능 const cowsay = require("cowsay"); // 서드파티 모듈 npm intall cowsay console.log(cowsay.say({ text: "I love javascript" })); #module #nodejs...


#module #nodejs

원문링크 : [node.js] 모듈 종류