├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── client ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ │ ├── createStudent │ │ │ └── createStudent.js │ │ └── showStudent │ │ │ └── showStudent.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ ├── setupTests.js │ └── styles.js └── yarn.lock ├── controllers └── studentController.js ├── database └── studentDB.js ├── index.js ├── models └── studentModel.js ├── package.json └── routes └── studentRoutes.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json 3 | .env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/README.md -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/components/createStudent/createStudent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/src/components/createStudent/createStudent.js -------------------------------------------------------------------------------- /client/src/components/showStudent/showStudent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/src/components/showStudent/showStudent.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/src/logo.svg -------------------------------------------------------------------------------- /client/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/src/reportWebVitals.js -------------------------------------------------------------------------------- /client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/src/setupTests.js -------------------------------------------------------------------------------- /client/src/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/src/styles.js -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /controllers/studentController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/controllers/studentController.js -------------------------------------------------------------------------------- /database/studentDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/database/studentDB.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/index.js -------------------------------------------------------------------------------- /models/studentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/models/studentModel.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/package.json -------------------------------------------------------------------------------- /routes/studentRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Garima-sharma814/student-management-system/HEAD/routes/studentRoutes.js --------------------------------------------------------------------------------