oss2024hnu / coursegraph-js

HTML5로 전공과목 정보 YAML 파일을 전공이수체계도나 표로 시각화하는 프로젝트
MIT License
3 stars 48 forks source link

실시간 협업 기능 추가 #214

Closed leeseungho55 closed 2 months ago

leeseungho55 commented 2 months ago

여러 사용자가 동시에 이수체계도를 편집할 수 있는 실시간 협업 기능을 추가

// 예시코드(show,html)

//예시코드2(js) const io = require('socket.io')(server);

io.on('connection', (socket) => { socket.on('updateChart', (data) => { io.emit('updateChart', data); }); });

kyagrd commented 2 months ago

뭐하자는 거죠?