├── README.md ├── backend ├── .gitignore ├── package-lock.json ├── package.json ├── src │ ├── index.ts │ └── managers │ │ ├── RoomManager.ts │ │ └── UserManger.ts └── tsconfig.json └── frontend ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public └── vite.svg ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── components │ ├── Landing.tsx │ └── Room.tsx ├── index.css ├── main.tsx └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /README.md: -------------------------------------------------------------------------------- 1 | ## Omegle clone using WebRTC (p2p) 2 | -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/backend/src/index.ts -------------------------------------------------------------------------------- /backend/src/managers/RoomManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/backend/src/managers/RoomManager.ts -------------------------------------------------------------------------------- /backend/src/managers/UserManger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/backend/src/managers/UserManger.ts -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/frontend/public/vite.svg -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /frontend/src/components/Landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/frontend/src/components/Landing.tsx -------------------------------------------------------------------------------- /frontend/src/components/Room.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/frontend/src/components/Room.tsx -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/frontend/src/main.tsx -------------------------------------------------------------------------------- /frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkirat/omegle/HEAD/frontend/vite.config.ts --------------------------------------------------------------------------------