Revert "archive 삭제"

This reverts commit 973af1937e.
This commit is contained in:
2026-04-09 10:17:21 +09:00
parent 3ff1886267
commit 69ab355bb9
245 changed files with 3799 additions and 0 deletions
@@ -0,0 +1,20 @@
```bash
npm install express
npm isntall http-proxy-middleware
```
``` js
const express = require('express');
const { createProxyMiddleware } = require('http-proxy-middleware');
const app = express();
const PORT = 9005;
// "/api"로 시작하는 모든 요청을 다른 서버로 포워딩합니다.
app.use('*', createProxyMiddleware({ target: 'http://192.168.101.67:8080', changeOrigin: true }));
// 서버 시작
app.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`);
});
```