[project - 의료부작용 신고 웹 사이트 만들기] 0. 시작

Jung Woo Sohn·2022년 4월 24일
0

front-end : react
back-end : node.js

의료부작용 사례에 대해 기록할 수 있는 웹사이트.

백엔드의 nodeJS 웹에서 사용자의 요청이 왔을 때 처리해주는 역할을 함. 간단한게

npm init
npm install express
npm install nodemon // 선택사항

을 해주면 서버를 실행시키기 위한 package 들을 설치할 수가 있음.

const express = require('express');
const path = require('path');
const app = express();

const http = require('http').createServer(app);
http.listen(8080, function() {
	console.log("listening on 8080");
});

를 해주고 콘솔창에

nodemon [위의 코드 담고 있는 파일명].js

를 실행시켜주면 된다.

https://codingapple.com/unit/nodejs-react-integration/

0개의 댓글