EHR
"A decentralized healthcare platform that securely
Created on 15th June 2025
•
EHR
"A decentralized healthcare platform that securely
The problem EHR solves
🚀 What Can People Use It For?
👨⚕️ Patients can:
Add and manage their personal health records.
Grant or revoke access to healthcare providers.
View a complete history of diagnosis and treatment data.
🩺 Healthcare Providers can:
Request authorization to view a patient’s data.
Add new medical records (if permitted).
🔐 Anyone can:
Verify record authenticity thanks to blockchain immutability.
Trust that sensitive health data is not controlled by a central authority.
Challenges we ran into
⚠️ Issue: React Frontend Failing with react-scripts Not Found
While setting up the React frontend for the dApp, we ran into an issue where the npm start command failed with the error:
kotlin
Copy
Edit
'react-scripts' is not recognized as an internal or external command
This happened because react-scripts was not installed correctly or missing from the dependencies, often due to incomplete npm install or a corrupted node_modules folder.
🛠️ Solution:
We deleted the node_modules folder and package-lock.json to clear any corrupted installs:
bash
Copy
Edit
rm -rf node_modules package-lock.json
Then we reinstalled the dependencies with:
bash
Copy
Edit
npm install
Finally, we ran:
bash
Copy
Edit
npm start
and the development server started successfully.
Tracks Applied (1)
Blockchain & Web3
Technologies used
