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
- 중급파이썬
- merge
- TypeScript
- docker
- SAA
- git
- Class
- flask
- lambda
- 채팅
- MongoDB
- Props
- async
- react
- S3
- node
- 튜플
- AWS
- crud
- NeXT
- SSA
- dict
- EC2
- wetube
- 카톡
- socket io
- RDS
- Vue
- pandas
- 파이썬
Archives
- Today
- Total
초보 개발자
vue socket cors에러 및 여러번 연결 되는 현상 본문
client side
// "vue-socket.io": "^3.0.10",
import io from 'socket.io-client';
created () {
this.addTodo('gogo')
this.socket = io('http://localhost:3001',{
transports: ["websocket"],
withCredentials: true,
});
},
sever side
// "socket.io": "^3.1.2"
var app = require("express")();
var server = require("http").createServer(app);
var io = require("socket.io")(server, {
cors: {
credentials: true,
},
allowEIO3: true,
});
이거 설정만 해주는데 엄청 오래 걸렸다.... 버전 낮춰.. 옵션 빼고 넣어.. 하..
일단 ㅇㅋ