├── .gitignore ├── README.md ├── login-with-react ├── client │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── components │ │ │ └── Header.jsx │ │ ├── index.css │ │ ├── main.jsx │ │ ├── pages │ │ │ ├── Home.jsx │ │ │ ├── Login.jsx │ │ │ └── Signup.jsx │ │ └── utils │ │ │ └── handleError.js │ ├── tailwind.config.js │ └── vite.config.js └── server │ ├── controllers │ └── UserAuthController.js │ ├── index.js │ ├── lib │ └── dbConnect.js │ ├── middlewares │ └── verifytoken.js │ ├── models │ └── User.js │ ├── package-lock.json │ ├── package.json │ └── routes │ └── UserAuthRouter.js ├── mongo-auth-api ├── controllers │ └── UserAuthController.js ├── index.js ├── lib │ └── dbConnect.js ├── models │ └── User.js ├── package-lock.json ├── package.json └── routes │ └── UserAuthRouter.js └── online-web-dev-compiler ├── client ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── components.json ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── vite.svg ├── src │ ├── AllRoutes.tsx │ ├── App.tsx │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── CodeEditor.tsx │ │ ├── CodeItem.tsx │ │ ├── Header.tsx │ │ ├── HelperHeader.tsx │ │ ├── Loader │ │ │ ├── Loader.tsx │ │ │ └── loader.css │ │ ├── RenderCode.tsx │ │ ├── theme-provider.tsx │ │ └── ui │ │ │ ├── avatar.tsx │ │ │ ├── button.tsx │ │ │ ├── dialog.tsx │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── resizable.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ └── sonner.tsx │ ├── index.css │ ├── lib │ │ └── utils.ts │ ├── main.tsx │ ├── pages │ │ ├── AllCodes.tsx │ │ ├── Compiler.tsx │ │ ├── Home.tsx │ │ ├── Login.tsx │ │ ├── MyCodes.tsx │ │ ├── NotFound.tsx │ │ ├── Signup.tsx │ │ └── pageStyles │ │ │ └── grid.css │ ├── redux │ │ ├── slices │ │ │ ├── api.ts │ │ │ ├── appSlice.ts │ │ │ └── compilerSlice.ts │ │ └── store.ts │ ├── utils │ │ └── handleError.ts │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vercel.json └── vite.config.ts └── server ├── dist ├── controllers │ ├── compilerController.js │ ├── cppCompilerController.js │ └── userController.js ├── index.js ├── lib │ └── dbConnect.js ├── middlewares │ ├── verifyToken.js │ └── verifyTokenAnonymous.js ├── models │ ├── Code.js │ └── User.js ├── routes │ ├── compilerRouter.js │ └── userRouter.js └── types │ └── compilerTypes.js ├── package-lock.json ├── package.json ├── src ├── controllers │ ├── compilerController.ts │ ├── cppCompilerController.ts │ └── userController.ts ├── index.ts ├── lib │ └── dbConnect.ts ├── middlewares │ ├── verifyToken.ts │ └── verifyTokenAnonymous.ts ├── models │ ├── Code.ts │ └── User.ts ├── routes │ ├── compilerRouter.ts │ └── userRouter.ts └── types │ └── compilerTypes.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/README.md -------------------------------------------------------------------------------- /login-with-react/client/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/.eslintrc.cjs -------------------------------------------------------------------------------- /login-with-react/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/.gitignore -------------------------------------------------------------------------------- /login-with-react/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/README.md -------------------------------------------------------------------------------- /login-with-react/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/index.html -------------------------------------------------------------------------------- /login-with-react/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/package-lock.json -------------------------------------------------------------------------------- /login-with-react/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/package.json -------------------------------------------------------------------------------- /login-with-react/client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/postcss.config.js -------------------------------------------------------------------------------- /login-with-react/client/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/public/vite.svg -------------------------------------------------------------------------------- /login-with-react/client/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/src/App.jsx -------------------------------------------------------------------------------- /login-with-react/client/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/src/assets/react.svg -------------------------------------------------------------------------------- /login-with-react/client/src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/src/components/Header.jsx -------------------------------------------------------------------------------- /login-with-react/client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/src/index.css -------------------------------------------------------------------------------- /login-with-react/client/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/src/main.jsx -------------------------------------------------------------------------------- /login-with-react/client/src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/src/pages/Home.jsx -------------------------------------------------------------------------------- /login-with-react/client/src/pages/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/src/pages/Login.jsx -------------------------------------------------------------------------------- /login-with-react/client/src/pages/Signup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/src/pages/Signup.jsx -------------------------------------------------------------------------------- /login-with-react/client/src/utils/handleError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/src/utils/handleError.js -------------------------------------------------------------------------------- /login-with-react/client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/tailwind.config.js -------------------------------------------------------------------------------- /login-with-react/client/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/client/vite.config.js -------------------------------------------------------------------------------- /login-with-react/server/controllers/UserAuthController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/server/controllers/UserAuthController.js -------------------------------------------------------------------------------- /login-with-react/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/server/index.js -------------------------------------------------------------------------------- /login-with-react/server/lib/dbConnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/server/lib/dbConnect.js -------------------------------------------------------------------------------- /login-with-react/server/middlewares/verifytoken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/server/middlewares/verifytoken.js -------------------------------------------------------------------------------- /login-with-react/server/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/server/models/User.js -------------------------------------------------------------------------------- /login-with-react/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/server/package-lock.json -------------------------------------------------------------------------------- /login-with-react/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/server/package.json -------------------------------------------------------------------------------- /login-with-react/server/routes/UserAuthRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/login-with-react/server/routes/UserAuthRouter.js -------------------------------------------------------------------------------- /mongo-auth-api/controllers/UserAuthController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/mongo-auth-api/controllers/UserAuthController.js -------------------------------------------------------------------------------- /mongo-auth-api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/mongo-auth-api/index.js -------------------------------------------------------------------------------- /mongo-auth-api/lib/dbConnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/mongo-auth-api/lib/dbConnect.js -------------------------------------------------------------------------------- /mongo-auth-api/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/mongo-auth-api/models/User.js -------------------------------------------------------------------------------- /mongo-auth-api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/mongo-auth-api/package-lock.json -------------------------------------------------------------------------------- /mongo-auth-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/mongo-auth-api/package.json -------------------------------------------------------------------------------- /mongo-auth-api/routes/UserAuthRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/mongo-auth-api/routes/UserAuthRouter.js -------------------------------------------------------------------------------- /online-web-dev-compiler/client/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/.eslintrc.cjs -------------------------------------------------------------------------------- /online-web-dev-compiler/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/.gitignore -------------------------------------------------------------------------------- /online-web-dev-compiler/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/README.md -------------------------------------------------------------------------------- /online-web-dev-compiler/client/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/components.json -------------------------------------------------------------------------------- /online-web-dev-compiler/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/index.html -------------------------------------------------------------------------------- /online-web-dev-compiler/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/package-lock.json -------------------------------------------------------------------------------- /online-web-dev-compiler/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/package.json -------------------------------------------------------------------------------- /online-web-dev-compiler/client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/postcss.config.js -------------------------------------------------------------------------------- /online-web-dev-compiler/client/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/public/vite.svg -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/AllRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/AllRoutes.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/App.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/assets/react.svg -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/CodeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/CodeEditor.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/CodeItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/CodeItem.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/Header.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/HelperHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/HelperHeader.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/Loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/Loader/Loader.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/Loader/loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/Loader/loader.css -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/RenderCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/RenderCode.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/ui/button.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/ui/form.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/ui/input.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/ui/label.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/ui/select.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/index.css -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/lib/utils.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/main.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/pages/AllCodes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/pages/AllCodes.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/pages/Compiler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/pages/Compiler.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/pages/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/pages/Home.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/pages/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/pages/Login.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/pages/MyCodes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/pages/MyCodes.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/pages/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/pages/NotFound.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/pages/Signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/pages/Signup.tsx -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/pages/pageStyles/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/pages/pageStyles/grid.css -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/redux/slices/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/redux/slices/api.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/redux/slices/appSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/redux/slices/appSlice.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/redux/slices/compilerSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/redux/slices/compilerSlice.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/redux/store.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/utils/handleError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/utils/handleError.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/client/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/src/vite-env.d.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/tailwind.config.js -------------------------------------------------------------------------------- /online-web-dev-compiler/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/tsconfig.json -------------------------------------------------------------------------------- /online-web-dev-compiler/client/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/tsconfig.node.json -------------------------------------------------------------------------------- /online-web-dev-compiler/client/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/vercel.json -------------------------------------------------------------------------------- /online-web-dev-compiler/client/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/client/vite.config.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/server/dist/controllers/compilerController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/dist/controllers/compilerController.js -------------------------------------------------------------------------------- /online-web-dev-compiler/server/dist/controllers/cppCompilerController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/dist/controllers/cppCompilerController.js -------------------------------------------------------------------------------- /online-web-dev-compiler/server/dist/controllers/userController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/dist/controllers/userController.js -------------------------------------------------------------------------------- /online-web-dev-compiler/server/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/dist/index.js -------------------------------------------------------------------------------- /online-web-dev-compiler/server/dist/lib/dbConnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/dist/lib/dbConnect.js -------------------------------------------------------------------------------- /online-web-dev-compiler/server/dist/middlewares/verifyToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/dist/middlewares/verifyToken.js -------------------------------------------------------------------------------- /online-web-dev-compiler/server/dist/middlewares/verifyTokenAnonymous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/dist/middlewares/verifyTokenAnonymous.js -------------------------------------------------------------------------------- /online-web-dev-compiler/server/dist/models/Code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/dist/models/Code.js -------------------------------------------------------------------------------- /online-web-dev-compiler/server/dist/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/dist/models/User.js -------------------------------------------------------------------------------- /online-web-dev-compiler/server/dist/routes/compilerRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/dist/routes/compilerRouter.js -------------------------------------------------------------------------------- /online-web-dev-compiler/server/dist/routes/userRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/dist/routes/userRouter.js -------------------------------------------------------------------------------- /online-web-dev-compiler/server/dist/types/compilerTypes.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | ; 4 | -------------------------------------------------------------------------------- /online-web-dev-compiler/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/package-lock.json -------------------------------------------------------------------------------- /online-web-dev-compiler/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/package.json -------------------------------------------------------------------------------- /online-web-dev-compiler/server/src/controllers/compilerController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/src/controllers/compilerController.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/server/src/controllers/cppCompilerController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/src/controllers/cppCompilerController.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/server/src/controllers/userController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/src/controllers/userController.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/src/index.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/server/src/lib/dbConnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/src/lib/dbConnect.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/server/src/middlewares/verifyToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/src/middlewares/verifyToken.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/server/src/middlewares/verifyTokenAnonymous.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/src/middlewares/verifyTokenAnonymous.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/server/src/models/Code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/src/models/Code.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/server/src/models/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/src/models/User.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/server/src/routes/compilerRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/src/routes/compilerRouter.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/server/src/routes/userRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/src/routes/userRouter.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/server/src/types/compilerTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/src/types/compilerTypes.ts -------------------------------------------------------------------------------- /online-web-dev-compiler/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TusharSoni014/codesoniyt/HEAD/online-web-dev-compiler/server/tsconfig.json --------------------------------------------------------------------------------