**** 배포하기 전에는 리액트 앱을 먼저 build 해야 한다. ****
npm i serve -g
serve -s build // build는 static 파일들(js, css)과 public 파일들(favicon, index.html)이 있다.
// express 설치
npm i express
// server.js 파일 내부
const express = require('express')
const path = require('path')
const app = express()
app.use(express.static(path.join(__dirname, 'build')))
app.listen(9000)
// 서버 실행
node server.js