Node.js Hello World & Common JS

황인호·2023년 2월 1일

appearance - show panel (ctrl + j)

GUI (Graphic User Interface)
아이콘을 클릭해서 실행시키는 행위는 명령을 하는 것

CLI (Command Line Interface)
터미널에 타이핑을 하여 명령을 실행하는 것

node index.js

node한테 index.js 파일 실행하라고 해!

module.exports = {
    moduleName : "calc module",
    add: add,
    sub, sub,
};

calculator.js에 add와 sub함수를
index.js파일에서 사용하도록 하는 파일
//파이썬에서 import기능을 하는 명령어와 비슷한듯

const calc = require("./calculator");
profile
예비창업자

0개의 댓글