├── .gitignore ├── README.md ├── client ├── .babelrc ├── package.json ├── public │ ├── asset │ │ ├── base_profile.jpg │ │ └── kakao_logo.png │ └── index.html ├── src │ ├── App.tsx │ ├── apis │ │ ├── auth.ts │ │ ├── chat.ts │ │ ├── friend.ts │ │ └── user.ts │ ├── components │ │ ├── chatting │ │ │ ├── Content.tsx │ │ │ ├── Header.tsx │ │ │ ├── NewChattingWindow.tsx │ │ │ └── index.ts │ │ ├── chattingRoom │ │ │ ├── ChatBlock.tsx │ │ │ ├── Content.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Header.tsx │ │ │ ├── InfoBlock.tsx │ │ │ └── index.ts │ │ ├── friends │ │ │ ├── Content.tsx │ │ │ ├── FindFriendWindow.tsx │ │ │ ├── FoundFriendProfile.tsx │ │ │ ├── Header.tsx │ │ │ └── index.ts │ │ ├── login │ │ │ ├── Content.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Header.tsx │ │ │ └── index.ts │ │ ├── menu │ │ │ ├── MenuSideBar.tsx │ │ │ └── index.ts │ │ ├── profile │ │ │ ├── Menu.tsx │ │ │ ├── ProfileInputWindow.tsx │ │ │ ├── SettingBlock.tsx │ │ │ ├── UserProfile.tsx │ │ │ └── index.ts │ │ └── signup │ │ │ ├── Content.tsx │ │ │ ├── Header.tsx │ │ │ └── index.ts │ ├── constants.ts │ ├── containers │ │ ├── chatting │ │ │ └── ChattingContainer.tsx │ │ ├── chattingRoom │ │ │ └── ChattingRoomContainer.tsx │ │ ├── friends │ │ │ └── FriendsContainer.tsx │ │ ├── index.ts │ │ ├── login │ │ │ └── LoginContainer.tsx │ │ ├── menu │ │ │ └── MenuContainer.tsx │ │ ├── profile │ │ │ └── ProfileContainer.tsx │ │ └── signup │ │ │ └── SignupContainer.tsx │ ├── index.tsx │ ├── pages │ │ ├── ChattingRoom.tsx │ │ ├── Login.tsx │ │ ├── Menu.tsx │ │ ├── Modal.tsx │ │ ├── Signup.tsx │ │ └── index.ts │ ├── routes │ │ ├── MenuRoute.tsx │ │ └── index.ts │ ├── store │ │ ├── actions │ │ │ ├── auth.ts │ │ │ ├── chat.ts │ │ │ ├── profile.ts │ │ │ └── user.ts │ │ ├── index.ts │ │ ├── reducers │ │ │ ├── auth │ │ │ │ └── index.ts │ │ │ ├── chat │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── profile │ │ │ │ └── index.ts │ │ │ └── user │ │ │ │ └── index.ts │ │ └── sagas │ │ │ ├── auth.ts │ │ │ ├── chat.ts │ │ │ ├── index.ts │ │ │ ├── profile.ts │ │ │ └── user.ts │ ├── styles │ │ ├── BaseStyle.ts │ │ └── GlobalStyle.ts │ └── types │ │ ├── auth.ts │ │ ├── base.ts │ │ ├── chatting.ts │ │ ├── friend.ts │ │ ├── profile.ts │ │ └── user.ts ├── tsconfig.json ├── webpack.config.js └── yarn.lock ├── package.json └── server ├── nodemon.json ├── package.json ├── src ├── config.ts.template ├── logger.ts ├── models │ ├── Chatting.ts │ ├── Friend.ts │ ├── Participant.ts │ ├── Room.ts │ ├── User.ts │ └── index.ts ├── routes │ ├── auth.ts │ ├── chat.ts │ ├── friend.ts │ └── user.ts ├── sockets │ └── index.ts ├── types │ └── chat.ts └── web.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/README.md -------------------------------------------------------------------------------- /client/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/.babelrc -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/asset/base_profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/public/asset/base_profile.jpg -------------------------------------------------------------------------------- /client/public/asset/kakao_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/public/asset/kakao_logo.png -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/App.tsx -------------------------------------------------------------------------------- /client/src/apis/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/apis/auth.ts -------------------------------------------------------------------------------- /client/src/apis/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/apis/chat.ts -------------------------------------------------------------------------------- /client/src/apis/friend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/apis/friend.ts -------------------------------------------------------------------------------- /client/src/apis/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/apis/user.ts -------------------------------------------------------------------------------- /client/src/components/chatting/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/chatting/Content.tsx -------------------------------------------------------------------------------- /client/src/components/chatting/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/chatting/Header.tsx -------------------------------------------------------------------------------- /client/src/components/chatting/NewChattingWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/chatting/NewChattingWindow.tsx -------------------------------------------------------------------------------- /client/src/components/chatting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/chatting/index.ts -------------------------------------------------------------------------------- /client/src/components/chattingRoom/ChatBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/chattingRoom/ChatBlock.tsx -------------------------------------------------------------------------------- /client/src/components/chattingRoom/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/chattingRoom/Content.tsx -------------------------------------------------------------------------------- /client/src/components/chattingRoom/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/chattingRoom/Footer.tsx -------------------------------------------------------------------------------- /client/src/components/chattingRoom/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/chattingRoom/Header.tsx -------------------------------------------------------------------------------- /client/src/components/chattingRoom/InfoBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/chattingRoom/InfoBlock.tsx -------------------------------------------------------------------------------- /client/src/components/chattingRoom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/chattingRoom/index.ts -------------------------------------------------------------------------------- /client/src/components/friends/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/friends/Content.tsx -------------------------------------------------------------------------------- /client/src/components/friends/FindFriendWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/friends/FindFriendWindow.tsx -------------------------------------------------------------------------------- /client/src/components/friends/FoundFriendProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/friends/FoundFriendProfile.tsx -------------------------------------------------------------------------------- /client/src/components/friends/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/friends/Header.tsx -------------------------------------------------------------------------------- /client/src/components/friends/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/friends/index.ts -------------------------------------------------------------------------------- /client/src/components/login/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/login/Content.tsx -------------------------------------------------------------------------------- /client/src/components/login/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/login/Footer.tsx -------------------------------------------------------------------------------- /client/src/components/login/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/login/Header.tsx -------------------------------------------------------------------------------- /client/src/components/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/login/index.ts -------------------------------------------------------------------------------- /client/src/components/menu/MenuSideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/menu/MenuSideBar.tsx -------------------------------------------------------------------------------- /client/src/components/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/menu/index.ts -------------------------------------------------------------------------------- /client/src/components/profile/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/profile/Menu.tsx -------------------------------------------------------------------------------- /client/src/components/profile/ProfileInputWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/profile/ProfileInputWindow.tsx -------------------------------------------------------------------------------- /client/src/components/profile/SettingBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/profile/SettingBlock.tsx -------------------------------------------------------------------------------- /client/src/components/profile/UserProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/profile/UserProfile.tsx -------------------------------------------------------------------------------- /client/src/components/profile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/profile/index.ts -------------------------------------------------------------------------------- /client/src/components/signup/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/signup/Content.tsx -------------------------------------------------------------------------------- /client/src/components/signup/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/signup/Header.tsx -------------------------------------------------------------------------------- /client/src/components/signup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/components/signup/index.ts -------------------------------------------------------------------------------- /client/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/constants.ts -------------------------------------------------------------------------------- /client/src/containers/chatting/ChattingContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/containers/chatting/ChattingContainer.tsx -------------------------------------------------------------------------------- /client/src/containers/chattingRoom/ChattingRoomContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/containers/chattingRoom/ChattingRoomContainer.tsx -------------------------------------------------------------------------------- /client/src/containers/friends/FriendsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/containers/friends/FriendsContainer.tsx -------------------------------------------------------------------------------- /client/src/containers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/containers/index.ts -------------------------------------------------------------------------------- /client/src/containers/login/LoginContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/containers/login/LoginContainer.tsx -------------------------------------------------------------------------------- /client/src/containers/menu/MenuContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/containers/menu/MenuContainer.tsx -------------------------------------------------------------------------------- /client/src/containers/profile/ProfileContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/containers/profile/ProfileContainer.tsx -------------------------------------------------------------------------------- /client/src/containers/signup/SignupContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/containers/signup/SignupContainer.tsx -------------------------------------------------------------------------------- /client/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/index.tsx -------------------------------------------------------------------------------- /client/src/pages/ChattingRoom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/pages/ChattingRoom.tsx -------------------------------------------------------------------------------- /client/src/pages/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/pages/Login.tsx -------------------------------------------------------------------------------- /client/src/pages/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/pages/Menu.tsx -------------------------------------------------------------------------------- /client/src/pages/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/pages/Modal.tsx -------------------------------------------------------------------------------- /client/src/pages/Signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/pages/Signup.tsx -------------------------------------------------------------------------------- /client/src/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/pages/index.ts -------------------------------------------------------------------------------- /client/src/routes/MenuRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/routes/MenuRoute.tsx -------------------------------------------------------------------------------- /client/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/routes/index.ts -------------------------------------------------------------------------------- /client/src/store/actions/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/store/actions/auth.ts -------------------------------------------------------------------------------- /client/src/store/actions/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/store/actions/chat.ts -------------------------------------------------------------------------------- /client/src/store/actions/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/store/actions/profile.ts -------------------------------------------------------------------------------- /client/src/store/actions/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/store/actions/user.ts -------------------------------------------------------------------------------- /client/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/store/index.ts -------------------------------------------------------------------------------- /client/src/store/reducers/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/store/reducers/auth/index.ts -------------------------------------------------------------------------------- /client/src/store/reducers/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/store/reducers/chat/index.ts -------------------------------------------------------------------------------- /client/src/store/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/store/reducers/index.ts -------------------------------------------------------------------------------- /client/src/store/reducers/profile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/store/reducers/profile/index.ts -------------------------------------------------------------------------------- /client/src/store/reducers/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/store/reducers/user/index.ts -------------------------------------------------------------------------------- /client/src/store/sagas/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/store/sagas/auth.ts -------------------------------------------------------------------------------- /client/src/store/sagas/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/store/sagas/chat.ts -------------------------------------------------------------------------------- /client/src/store/sagas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/store/sagas/index.ts -------------------------------------------------------------------------------- /client/src/store/sagas/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/store/sagas/profile.ts -------------------------------------------------------------------------------- /client/src/store/sagas/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/store/sagas/user.ts -------------------------------------------------------------------------------- /client/src/styles/BaseStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/styles/BaseStyle.ts -------------------------------------------------------------------------------- /client/src/styles/GlobalStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/styles/GlobalStyle.ts -------------------------------------------------------------------------------- /client/src/types/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/types/auth.ts -------------------------------------------------------------------------------- /client/src/types/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/types/base.ts -------------------------------------------------------------------------------- /client/src/types/chatting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/types/chatting.ts -------------------------------------------------------------------------------- /client/src/types/friend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/types/friend.ts -------------------------------------------------------------------------------- /client/src/types/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/types/profile.ts -------------------------------------------------------------------------------- /client/src/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/src/types/user.ts -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/webpack.config.js -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/package.json -------------------------------------------------------------------------------- /server/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/nodemon.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/config.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/src/config.ts.template -------------------------------------------------------------------------------- /server/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/src/logger.ts -------------------------------------------------------------------------------- /server/src/models/Chatting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/src/models/Chatting.ts -------------------------------------------------------------------------------- /server/src/models/Friend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/src/models/Friend.ts -------------------------------------------------------------------------------- /server/src/models/Participant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/src/models/Participant.ts -------------------------------------------------------------------------------- /server/src/models/Room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/src/models/Room.ts -------------------------------------------------------------------------------- /server/src/models/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/src/models/User.ts -------------------------------------------------------------------------------- /server/src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/src/models/index.ts -------------------------------------------------------------------------------- /server/src/routes/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/src/routes/auth.ts -------------------------------------------------------------------------------- /server/src/routes/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/src/routes/chat.ts -------------------------------------------------------------------------------- /server/src/routes/friend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/src/routes/friend.ts -------------------------------------------------------------------------------- /server/src/routes/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/src/routes/user.ts -------------------------------------------------------------------------------- /server/src/sockets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/src/sockets/index.ts -------------------------------------------------------------------------------- /server/src/types/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/src/types/chat.ts -------------------------------------------------------------------------------- /server/src/web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/src/web.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eastshine94/KakaoTalk/HEAD/server/tsconfig.json --------------------------------------------------------------------------------