Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 노드에 리액트 추가하기
- Python
- 계산맞추기 게임
- DB Browser
- 웹 게임을 만들며 배우는 리액트
- props
- Colaboratory 글자 깨짐
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- 인프런
- 거북이 대포 게임
- Spring-Framework
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- react
- react오류
- vs code 내 node
- 모던자바스크립트
- 리액트
- 모두의 파이썬
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- JS 개념
- intellij
- 타자 게임 만들기
- spring-boot
- googleColaboratory
- 따라하며 배우는 노드 리액트 기본 강의
- node.js로 로그인하기
- 자바스크립트
- Concurrently
- Do it 자바스크립트 + 제이쿼리 입문
- node.js 설치
Archives
- Today
- Total
프로그래밍 삽질 중
[React] (connection refused): no connection could be made because the target machine actively refused it. this usually results from trying to connect to a service that is inactive on the foreign host. 해결 본문
과거 프로그래밍 자료들/컴퓨터설정&오류
[React] (connection refused): no connection could be made because the target machine actively refused it. this usually results from trying to connect to a service that is inactive on the foreign host. 해결
평부 2022. 5. 22. 13:45
* 3시간 넘게 고민함, 왜 해결된 건지 아직도 의문
* 일단 문제는 server와 client가 연결되지 않아서 axios가 제대로 작동하지 않음
* 여러 글들을 보니 server가 문제
-> server와 client가 포트가 다를 때 연동해주는 setProxy에서 문제가 생긴 것이라 짐작
-> 변경하고 오류 생겨서 원래 코드로 다시 고침
-> 다시 잘 작동됨
-> 대체 왜 된 걸까?
setProxy.js 수정 전
const { createProxyMiddleware } = require("http-proxy-middleware");
module.exports = function (app) {
app.use(
"/api",
createProxyMiddleware({
target: "http://localhost:5000",
changeOrigin: true,
})
);
};
setProxy.js 수정 후 -> npm run dev로 서버 동작 시
[DEP_WEBPACK_DEV_SERVER_ON_AFTER_SETUP_MIDDLEWARE] DeprecationWarning: 'onAfterSetupMiddleware' option is deprecated. Please use the 'setupMiddlewares' option. 오류 발생
const proxy = require("http-proxy-middleware");
module.exports = function (app) {
app.use(
proxy("/api", {
target: "https://localhost:5000",
changeOrigin: true,
})
);
};
* 최종 확인 setProxy.js
const { createProxyMiddleware } = require("http-proxy-middleware");
module.exports = function (app) {
app.use(
"/api",
createProxyMiddleware({
target: "http://localhost:5000",
changeOrigin: true,
})
);
};
'과거 프로그래밍 자료들 > 컴퓨터설정&오류' 카테고리의 다른 글
[React] Cannot read property 'params' of undefined 에러 (0) | 2022.05.24 |
---|---|
[React] Cannot read property 'map' of undefined 해결 (0) | 2022.05.22 |
React setProxy 관련 오류 다시 생각하기[아직 해결x] (0) | 2022.05.20 |
[React] axios error request failed with status code 500 해결 (0) | 2022.05.20 |
[React] history.push가 오류 나는 경우 (0) | 2022.05.12 |