Socket.IO를 이용한 채팅 및 온라인/오프라인 실시간 상태 반영
https://socket.io/docs/v4/server-initialization/ Server Initialization | Socket.IOOnce you have installed the Socket.IO server library, you can now init the server. The complete list of options can be found here.socket.io채팅 앱에서는 유저가 메시지를 실시간으로 주고받는 것뿐만 아니라, 누가 온라인인지도 즉시 보여주는 기능이 중요합니다.이를 위해 Socket.IO를 도입했습니다.서버(Node.js) 에서는 socket.io 라이브러리를 사용하였고, 클라리언트(React) 에서는 socket.io-client 라이브러리를 사용하였습니다..
Cloudinary를 이용한 프로필 업데이트 기능 구현
사용자가 회원가입 시 또는 이후에 프로필 사진을 업로드할 수 있도록 하기 위해, 이미지 저장소로 Cloudinary를 연동하는 기능을 구현했습니다. https://cloudinary.com/documentation/node_integration Node.js SDK – Node.js Upload + Image, Video Transformations | CloudinaryThe Cloudinary Node.js SDK provides simple, yet comprehensive image and video upload, transformation, optimization, and delivery capabilities through the Cloudinary APIs, that you can imple..
Hyun Dev