LukeHan 의 잡다한 기술 블로그

node.js express 서버 프로젝트 생성하기 본문

개발/node.js

node.js express 서버 프로젝트 생성하기

LukeHan1128 2023. 8. 18. 20:00
반응형

 

환경 구성

mkdir lukeTest

cd lukeTest

위와 같이 명령어를 입력하여 폴더 생성 후 폴더로 이동한다

 

 

 

 

npm init -y

위의 명령어를 입력하여 package.json 파일을 생성한다

 

 

 

 

{
  "name": "lukeTest",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "start" : "node app.js",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "dependencies": {
    "express": "^4.18.2"
  }
}

package.json 파일 내용을 확인해 보면 위와 같이 생성된 것을 확인할 수 있다

"scripts" 항목에서 위와 같이 "start" : "node app.js" 를 추가한다

 

 

 

 

npm install express

위와 같이 입력하여 express 모듈을 설치한다

 

 

 

 

touch app.js

위와 같이 입력하여 app.js 파일을 생성한다

 

 

 

 

const express = require('express');

const app = express();

app.set('port', process.env.PORT || 3000);

app.get('/', (req, res) => {
    res.send('Hello, Express')
});

app.listen(app.get('port'), ()=>{
    console.log(app.get('port'), '번 포트에서 대기 중')
});

app.js 파일을 연 후 위와 같이 입력한 후 저장한다

 

 

 

 

npm start

위와 같이 입력하여 실행한다

 

반응형
Comments