hello world
Git Bash 로 node.js 실행 종료 본문
728x90
Git Bash는 아래 링크에서 다운!
nodeJs 폴더에서 우클릭 Git bash Here 클릭
hello.js 를 git bash에서 실행해주기 위해
node 실행해줄파일이름
hello.js 코드
const http = require('http'); // require : node.js 에서 제공하는 http라는 부품이 요구된다.
// const : 상수 (바뀌지 않음)
const hostname = '127.0.0.1';
const port = 3000;
const server = http.createServer((req,res)=>{ //createServer : return a new instance of http.Server
res.statusCode =200;
res.setHeader('Content-Type','text/plain');
res.end('Hello Word');
});
server.listen(port, hostname, ()=>{
console.log('Server running at http://${hostname}:${port}/');
})
성공적으로 실행되었음을 확인할수있다
hello.js 를 git bash에서 종료하기 위해서는 ctrl + c
'WEB > Node.js' 카테고리의 다른 글
Node.js 프레임워크 Express (0) | 2020.08.07 |
---|---|
node.js 프로젝트 생성 (0) | 2020.07.15 |
Eclipse 에서 Node.js 개발환경 만들기 (0) | 2020.07.15 |
Comments