Search

Node μ‹œμž‘ν•˜κΈ°

Node μ‹œμž‘ν•˜κΈ°

β€’
CMD μ—μ„œ node μ‹€ν–‰
β€’
VSCODE 터미널 μ—μ„œ μ‹€ν–‰
β€’
Node.js μ’…λ£Œ
β€’
μžλ°”μŠ€ν¬λ¦½νŠΈ(js) 파일 μ‹€ν–‰

CMD μ—μ„œ node μ‹€ν–‰

node
Shell
볡사
let welcome = 'Hello node!'
Shell
볡사
console.log(welcome)
Shell
볡사

VSCODE 터미널 μ—μ„œ μ‹€ν–‰

node
Shell
볡사
let welcome = 'Hello node!'
Shell
볡사
console.log(welcome)
Shell
볡사

Node.js μ’…λ£Œν•˜κΈ°

ctrl + C, ctrl + C
Shell
볡사
ctrl + D
Shell
볡사
.exit
Shell
볡사

μžλ°”μŠ€ν¬λ¦½νŠΈ(js) 파일 μ‹€ν–‰

β€’
test.js
function welcome() { console.log('Hello Node.js~!'); } welcome() /* node μžλ°”μŠ€ν¬λ¦½νŠΈ μ‹€ν–‰ > node (파일경둜) */
JavaScript
볡사
node test
PowerShell
볡사