해당 글은 이전 글들의 작업을 이어서 진행되고 있는 글입니다.
1. 누군가 / 라는 경로로 방문을 하면 아래의 함수를 작동해라
app.get('/', function(request, response){
});
2. index.html라는 파일을 전송해라
app.get('/', function(request, response){
response.sendFile(__dirname + '/index.html');
});
이렇게 하고 http://localhost:8080 해당 url을 방문하면 미리 만들어진 html 파일을 보여준다.
[응용]
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<h4>안녕하세요 홈페이지입니다.</h4>
<a href="http://localhost:8080/pet">펫</a>
<a href="http://localhost:8080/beauty">뷰티</a>
</body>
</html>
'Server > Node.js' 카테고리의 다른 글
Mongo DB 초기 셋팅하기 (0) | 2023.08.29 |
---|---|
폼에 입력한 데이터를 서버에 전송하는 법(POST) (0) | 2023.08.24 |
control + c로 서버를 끄지 않고 실시간으로 서버에 적용하기 (0) | 2023.08.22 |
내 서버에 GET 요청 처리하기 (0) | 2023.08.21 |
Node.js 설치 + express 라이브러리 설치하기 (0) | 2023.08.18 |