Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marwan37/symptom-overflow
https://github.com/marwan37/symptom-overflow
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/marwan37/symptom-overflow
- Owner: marwan37
- Created: 2023-03-30T19:30:54.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-09T01:46:11.000Z (about 1 year ago)
- Last Synced: 2024-11-06T17:54:48.017Z (3 months ago)
- Language: JavaScript
- Size: 10.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SymptomOverflow
SymptomOverflow is a MERN stack application that provides a comprehensive platform for managing symptoms and diagnoses. It allows users to input symptoms and generate a ranked list of differential diagnoses.
## Features
- **Symptom Management:** Create, update, delete, and retrieve symptoms with associated medical terms and tags.
- **Diagnosis Management:** Create, update, delete, and retrieve diagnoses by major symptoms, associated symptoms, age, and organ system.
- **Differential Diagnoses:** Generate a ranked list of potential diagnoses based on the inputted symptoms.## Technology Overview
- **MongoDB:** Utilizes MongoDB for data storage and retrieval.
- **Express:** An Express backend that handles API requests and serves the frontend.
- **React Frontend:** Multi-route React app for diagnoses, symptoms, adding a new diagnosis, adding a new symptom, and a page that for symptom input / differentials output.
- **API:** RESTful API endpoints for managing symptoms and diagnoses.## Getting Started
### Prerequisites
- Node.js
- MongoDB
- React (if applicable)### Installation
1. Clone the repository:
```bash
git clone https://github.com/marwan37/symptom-overflow.git
```2. Navigate to the project directory and install dependencies:
```bash
cd symptom-overflow
npm install
```3. Start the development server:
```bash
npm start
```### Usage
Visit http://localhost:3000 in your browser to explore the application.##### API Endpoints
**Symptoms:**
- GET `/api/symptoms`: Retrieve all symptoms.
- GET `/api/symptoms/:id`: Retrieve a symptom by ID.
- POST `/api/symptoms`: Create a new symptom.
- PATCH `/api/symptoms/:id`: Update a symptom.
- DELETE `/api/symptoms/:id`: Delete a symptom.**Diagnoses:**
- GET `/api/diagnoses`: Retrieve all diagnoses.
- GET `/api/diagnoses/:id`: Retrieve a diagnosis by ID.
- POST `/api/diagnoses`: Create a new diagnosis.
- PATCH `/api/diagnoses/:id`: Update a diagnosis.
- DELETE `/api/diagnoses/:id`: Delete a diagnosis.### License
This project is licensed under the MIT License.