Node.js 모듈의 작성과 사용
[Node.js] Node.js 모듈의 작성과 사용
[Node.js] Node.js 모듈의 작성과 사용
2021.12.02🎯 [Node.js] Node.js 모듈의 작성과 사용 📝 모듈의 기본적인 작성법 // elice.js const name = "elice"; const age = 5; const nationality = "korea"; module.exports = { name, age, nationality, }; const student = require("./elice"); // student 출력값 { name: 'elice', age: 5, nationality: 'korea'} module.exports = { name, age, nationality, }; // 변수명으로 export 하는 모듈 작성법 // - 모듈을 object로 만들고, 각 key-value를 지정해서 내보낸다. exports.name..