써먹는 웹개발
[Node] 서버 실행 및 테스트 프로그램(Postman) 본문
728x90
반응형
1. 서버 실행
1) 소스 입력 - 파일명 : server.js
const http = require("http"); http .createServer((req, res) => { res.writeHead(200, {"Content-Type": "text/html"}); res.end("<p>Hello Word~!!!</p>"); }) .listen(3000, () => { console.log("3000번 포트 서버 접속 완료~!!"); }); |
2) 실행
node server.js |
결과 : 3000번 포트 서버 접속 완료~!! |
2. 다운로드 한 Postman 프로그램 확인
※ 인터넷에서 실행시 'localhost:3000' 입력
Postman 실행 중간에 로그인 페이지 출력시, 페이지 하단의 'Skip signing in and take me straight to the app' 버튼 실행
강의 출처 : 코드라이언 > Node.js 강의
728x90
반응형
'Server > Node.js' 카테고리의 다른 글
[Node] 에러메시지 - npm ERR! Unexpected end of JSON input while parsing near '...c...' (0) | 2021.04.23 |
---|---|
[Node] ejs란? (0) | 2021.04.22 |
[Node] 이미지 업로드 하는 방법 : multer (0) | 2021.04.22 |
[Node] npm(node.js) - 모듈 설치 및 삭제 명령어 (모듈을 잘못 설치했을때) (0) | 2021.04.20 |
[Node] Url 호출별 결과값 호출방법 (0) | 2021.04.17 |
Comments