Home
Softono

College Management React

Open source JavaScript
75
Stars
33
Forks
2
Issues
1
Watchers
4 years
Last Commit

 About College Management React

This is a College management web app in MERN stack.

Platforms

Web Self-hosted

Languages

JavaScript

Links

Need Help Installing College Management React?

We provide expert installation service for this software. Our team will install, configure, and secure College Management React on your server. plans start at just $30.

College Management React

View on GitHub

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