All Projects β†’ GaurangShukla β†’ college-management-react

GaurangShukla / college-management-react

Licence: GPL-3.0 license
This is a College management web app in MERN stack.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to college-management-react

College-Notes
Contribute your handwritten PDF notes and help other students ✌ #DecodersCommunity πŸ–€
Stars: ✭ 30 (-28.57%)
Mutual labels:  college, hacktoberfest-accepted, hacktoberfest2021
typiform
βš›οΈ A serverless React powered online form builder that works like a doc.
Stars: ✭ 16 (-61.9%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Fenice-Network
Building the job search portal which helps both recruiters and job seekers to get perfect jobs.
Stars: ✭ 20 (-52.38%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
ProjectSakura.github.io
Our official website, download center and blog.
Stars: ✭ 26 (-38.1%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Data-Structures-and-Algorithms
No description or website provided.
Stars: ✭ 108 (+157.14%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
react-in-out-textarea
A simple React.js User Interface Component that is like Google Translate with full TypeScript Support
Stars: ✭ 28 (-33.33%)
Mutual labels:  yarn, hacktoberfest2021
HacktoberFest21
A beginner friendly repository for HacktoberFest 2021
Stars: ✭ 45 (+7.14%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Hacktoberfest
In this repository you can contribute quality code in languages you are comfortable with during the Hacktoberfest event. Raise Genuine PR's Only your. You aren't allowed to Update README.md. Invalid PR's is not supported here.
Stars: ✭ 20 (-52.38%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
HacktoberFest-2021
A repository for Hacktober Fest contributions. Everyone is welcome. Fork away!
Stars: ✭ 10 (-76.19%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Hacktoberfest-Indonesia-2021
Event Hacktoberfest Indonesia 2021
Stars: ✭ 42 (+0%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Frontend-Animations
Frontend Animation Projects.πŸš€
Stars: ✭ 20 (-52.38%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Poke-Dex
This is a small webpage that allows user to add their favourite PokΓ©mons! This project aims to help people in creating their first pull requests and participating in Hacktoberfest 2021
Stars: ✭ 126 (+200%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Hacktoberfest2021
Hacktoberfest is open to everyone in our global community. Whether you’re a seasoned contributor or looking for projects to contribute to for the first time, you’re welcome to participate.
Stars: ✭ 9 (-78.57%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Rboxlo
Roblox private server
Stars: ✭ 173 (+311.9%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Python Scripts
A collaborative repository that contains various types of python scripts
Stars: ✭ 14 (-66.67%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Hacktoberfest-2021
❗❗ Make your first PR now, accepting and merging PRs continuously. ⭐HACKTOBER ACCEPTED 2021 ✨✨Happy Hacking πŸ’–πŸ’–
Stars: ✭ 11 (-73.81%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Hacktoberfest-2021
This repository dedicated to Hacktoberfest 2021. Hacktoberfest is a month long open source contribution program held in October every year by Digital Ocean. This is a beginner-friendly open source event.
Stars: ✭ 10 (-76.19%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
autocorr kr
λ¦¬λΈŒλ ˆμ˜€ν”ΌμŠ€(LibreOffice) μžλ™ ꡐ정(Autocorrect)κΈ°λŠ₯에 λŒ€ν•œ 말λͺ¨μ΄ μ €μž₯μ†Œ
Stars: ✭ 15 (-64.29%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
HacktoberFest2021
No description or website provided.
Stars: ✭ 33 (-21.43%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Hacktoberfest-2021-Data-Structures-and-Algorithms
This repository is mainly open to those who are looking to make some PRs for the Hacktoberfest 2021 event. In this repository, you can add programs on Data Structures and some useful algorithms for Competitive Programming.
Stars: ✭ 49 (+16.67%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021

Please drop a STAR🌟 if you like my work and fork it if you want any further assistance.

GitHub repo size GitHub commit merge status GitHub stars GitHub issues Screenshot

College ERP🏫 in REACTJs

  • This is a simple college erp web app in MERN stack,it consist of all the basic CRUD operations.
  • All the fields (students,teachers,class,exams) can be edited via the admin panel.

Prerequisites 🧾

  • MongoDb- Install mongodb GUI on your machine.
  • Nodejs - Install nodejs.
  • Yarn- If npm fails yarn works as a fail safe.

Features πŸ‘“

  • Create new students.
  • Create new teacher.
  • Create new exam.
  • Create new user and assign permissions and roles.
  • Create new course.
  • Students, Teacher are in one-to-many relations in database.
  • Exam, Course,admin are in mant-to-many realtions in database.

InstructionsπŸ‘¨β€πŸ«

  • Open project folder in a terminal or prefered IDE .
  • Perform "npm install " or "yarn install".
  • Type npm "start-script build" this will make a html and manifest file in client/build folder to render on a browser.
  • Once node_modules are downloaded type "npm start" or "yarn start" to start the server on prescribed port.

Screenshot πŸ“·

ScreenshotScreenshot ScreenshotScreenshot Screenshot Screenshot Screenshot Screenshot Screenshot Screenshot Screenshot Screenshot Screenshot

SCHEMA

  • USER
ID Primary Key Required Unique
Mail String
name String
password String βœ” βœ”
roles String
surname String
username String βœ” βœ”
  • COURSE
ID Primary Key Required Unique
Name String βœ”
  • EXAM
ID Primary Key Required Unique
Place String
Score Number
Valid Boolean
  • Relations
_course _student _teacher
course student teacher
one-to-many one-to-many one-to-many
  • STUDENT
ID Primary Key Required Unique
DOB Date βœ”
lastname String βœ”
name String βœ”
  • Relations
_course
course
many-to-many
  • TEACHERS
ID Primary Key Required Unique
lastname String βœ”
name String βœ”
  • Relations
_course
course
many-to-many
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].