์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- ์นด์นด์ค ์ฝํ
- ์๋ฐ์คํฌ๋ฆฝํธ ๋ฌธ์์ด ์์ถ
- ๋ฐฑ์ค 1339๋ฒ nodejs
- js ๊ฑฐ๋ฆฌ๋๊ธฐ ํ์ธํ๊ธฐ
- ์๋ฐ์คํฌ๋ฆฝํธ ์ค์ฝํ
- ๋ฐฑ์ค 2108 nodejs
- ์ฌ์ฉ์ฑ ๊ฐ์
- emtion app router
- suspense ๋น๋๊ธฐ
- ๊ตฌ๋ฆํค ์ฑ๋ฆฐ์ง
- ๋ฐฑ์ค 2108 ์๋ฐ์คํฌ๋ฆฝํธ
- ๊ตฌ๋ฆํค
- js ์ค์ฝํ
- ํ๋ก๊ทธ๋๋จธ์ค ๊ฑฐ๋ฆฌ๋๊ธฐ ํ์ธํ๊ธฐ
- js
- suspense ๋์์๋ฆฌ
- suspense ๋ณ๋ชฉํ์
- emotion RSC
- ์ต์ ๋์ฒด์ด๋
- next13 emotion
- ๋ฆฌ์กํธ์ฟผ๋ฆฌ suspense
- app router emotion
- ๋ฐฑ์ค 1339๋ฒ ์๋ฐ์คํฌ๋ฆฝํธ
- suspense react-query
- js ๋ฌธ์์ด ์์ถ
- ํ๋ก๊ทธ๋๋จธ์ค ๋ฌธ์์ด ์์ถ
- TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more:
- ๊ตฌ๋ฆํค ์ฑ๋ฆฐ์ง ํ๊ณ
- ์ค์ฝํ
- ๋ฐฑ์ค 1339๋ฒ js
- Today
- Total
Lennon FE
[NodeJS] React, Node ์ฐ๊ฒฐํ๊ธฐ ๋ณธ๋ฌธ
CRA๋ก ๋ฆฌ์กํธ ํ๋ก์ ํธ๋ฅผ ์์ฑํ๋ค๊ณ ๊ฐ์ ํ๊ฒ ๋ค.
ํด๋น ํด๋๋ก ๋ค์ด๊ฐ ๋จผ์ ์์กด์ฑ์ ์ค์นํด๋ณด์
npm install express // express ๋ผ์ด๋ธ๋ฌ๋ฆฌ!
npm install concurrently // package.json์์ ์๋ฒ์ ํด๋ผ์ด์ธํธ ๋์์ ์คํ์ํด
npm install cors // cors
npm install http-proxy-middleware // ํด๋ผ์ด์ธํธ์ ์ฐ๋
npm install nodemon // ์๋ก๊ณ ์นจํด๋ ์ ์ ์ฉ๋๊ฒ!
๋ด ํ๋ก์ ํธ ๊ธฐ์ค ํด๋๊ตฌ์กฐ๋ฅผ ์๋์ ๊ฐ๋ค.
server ํด๋๋ฅผ ๋ง๋ค์ด route๋ผ๋ ํด๋๋ฅผ ๋ง๋ค๊ณ ์์ index.js๋ฅผ ๋ฃ์.
๊ทธ ํ serverํด๋ ์ ์ญ์ app.js๋ฅผ ๋ง๋ค์!
ํด๋ผ์ด์ธํธ์ ์๋ฒ ์ฐ๋์ ์ํ proxy์ค์ ์ ์ํด srcํด๋ ๋ด๋ถ์ setProxy.js๋ฅผ ์์ฑํ์.
index.js
// server/route/index.js
const express = require("express");
const router = express.Router();
router.get("/", (req, res) => {
res.send("hello World");
});
module.exports = router;
app.js
const express = require("express");
const app = express();
const cors = require("cors");
const basic = require("./route/index");
const port = process.env.PORT || 3001;
app.use(cors());
app.use(bodyParser.json());
app.use("/", basic);
app.listen(port, () => {
console.log(`express is running on ${port}`);
});
setProxy.js
const proxy = require("http-proxy-middleware");
module.exports = (app) => {
app.use(proxy("/", { target: "http://localhost:3001/" }));
};
์ด์ package.json์ผ๋ก ์ด๋ํด์ concurrently๋ฅผ ์ฌ์ฉํด script๋ฅผ ๋ฐ๊ฟ์ฃผ๋๋ก ํ์.
npm run dev
๋ก ์คํํด๋ณด๋ฉด ํด๋ผ์ด์ธํธ์ ์ฐ๋๋์ด ์ ์คํ๋๋ ๊ฑธ ํ์ธํ ์ ์๋ค.
๋ค์ ํฌ์คํ ์์ axios๋ฅผ ์ฌ์ฉํด ํด๋ผ์ด์ธํธ์ ์๋ฒ ํต์ ์ ํด๋ณด๊ฒ ์ต๋๋ค!