반응형
1. 하는 이유
app.js 파일을 지저분하게 만들기 싫어서
나는 자바, c#등이 익숙해서 비슷하게 쓰고 싶어서
2. test.js 파일 만들기
function printABC()
{
console.log("ABC");
}
function printCDE(){
console.log("CDE");
}
//하나 또는 여러개의 함수를 추가할때
module.exports = {
PrintABC: printABC,
PrintABC: printCDE,
};
3. app.js 파일 수정하기
var test = require('./script/test'); //test.js 파일만든 위치
test.PrintABC();
test.PrintCDE();
반응형
'Develop > Nodejs' 카테고리의 다른 글
nodejs 현재 시간 가져오기 hh:mm:ss 형식 (0) | 2023.02.28 |
---|---|
[Nodejs] Nodejs 로 Firestore에 정보 저장하기(Firebase 연동) (0) | 2022.02.25 |
[Node] post 구현 (0) | 2021.04.18 |
[Node로 binance api 사용하기] candle 정보 읽어오기 (0) | 2021.04.18 |
[Node.js] Express로 프로젝트 만들기, Express-generator (0) | 2021.02.19 |
댓글