README content inspired by https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes that group 70 reviewed on 03/11/24
Care for All EHR (electronic health record) is a prototype database application designed for the comprehensive recording and management of healthcare-related data.
THis includes patient profiles, provider profiles, and detailed records encompassing patient visits to healthcare providers, completed with credentials including insurance information and clinical notes.
- Technologies used
- Libraries/Modules Used
- Purpose Statement
- UI Screenshot
- Project Maintenance
- Code Citations/Credit
This application created with:
- MySQL for database
- Node.JS and Express for backend
- React for frontend
This application was made possible by the following libraries/modules:
- Create React App
- nodemon
- forever
- axios
- cors
- dotenv
- jquery
- react-router-dom
- mysql
- node
- express
- react
This project is created to emulate a real-world usage of an electronic health record and the kind of healthcare data that may be collected during a visit between a patient and healthcare provider.
A screenshot of the general layout of all pages, which consist of a navigation bar, description for available operations, search/filter boxes, form to add entry, and the database table.
The project is currently being maintained by Anson and Tony, students in CS340 at Oregon State University.
- https://github.com/osu-cs340-ecampus/nodejs-starter-app/tree/main/Step%201%20-%20Connecting%20to%20a%20MySQL%20Database architecture inspired the development of the architecture for this project, along with the db-connector code was modified by this project's group to connect the application to a database.
- https://github.com/safak/youtube2022/tree/react-mysql code was considered, reviewed, and learned by group 70 to learn to implement basic methods for CRUD. After learning how to implement CRUD methods by following this project, group 70 then adapted the CRUD implementation strategies to Care for All to implement CRUD methods with consideration of the project's constraints.
- CS290 concept of Model-View-Controller was reviewed by group 70. This concept was then refined to help group 70 make this project's architecture more modular and maintainable, i.e., splitting code that handles route and code that handles SQL logic into separate directories in the backend.
- https://levelup.gitconnected.com/how-to-render-react-app-using-express-server-in-node-js-a428ec4dfe2b was reviewed by group 70 to learn technique to deploy React with Node.JS/Express/MySQL all on one server. Technique was adapted to the backend's architecture.
- https://www.geeksforgeeks.org/how-to-disable-a-button-in-reactjs/ used to learn technique to create a submission button to add new data to certain entities that can be disabled in react with the ability to chage its color to indicate disabled
- https://www.shecodes.io/athena/72444-how-to-do-conditional-rendering-of-html-elements-in-react was used to learn how to conditionally render HTML in react