To be able to enter a prescription with structured data in a software system, within a comparable time to hand written prescription
EMR software is used by doctors to enter all patient information. They also add the prescribed prescriptions, prescription data entry in software makes it possible for pharmacy and insurance firms to access prescription information and lends itself to research and analytics, but it takes far longer than entering a prescription by hand.
We will therefore simplify and make prescription data entry comparable to handwritten prescription data entry.
- React.js for Frontend
- Node.js and Express.js for Backend
- MonogDB for Database
- Tailwind CSS for frontend UI
βββ README.md <- The top-level README for developers using this project.
β
βββ emids-frontend
β βββ package.json <- Containing the required node modules start-up scripts etc
β βββ postcss.config.js <- Tailwind css file
β βββ tailwind.config.js <- Tailwind css file
β βββ public
β βββ src
β βββ App.js <- React App
β βββ index.js <- React App startup
β βββ Home.js <- Home Page
β βββ Layout.js <- Navigation Structure
β βββ pages <- Folder for pages
β βββ components <- Folder for react components
β
β
βββ emids-backend
βββ node_modules <- Folder containg node modules
βββ .env <- MongoDB connection string
βββ prescription
β βββ index.js <- Making the html for EHR and converting to pdf format
βββ routes
β βββ patient.js <- API Routes for add/deleting a patient
β βββ doctor.js <- API Routes for add/deleting a doctor
βββ models
β βββ patient.js <- Defining Database Structure Routes for a patient
β βββ doctor.js <- Defining Database Structure Routes for a doctor
β
βββ Prescription.pdf. <- Sample PDF File for editing
β
βββ index.js <- Express app with startu
βββ package.json <- Containing the required node modules start up scripts etc
βββ db
βββ conn.js <- Connect to MongoDB
cd frotend
npm start
cd Backend
npm start