-
Notifications
You must be signed in to change notification settings - Fork 164
Open
Description
After cloning the repository and installing dependencies with npm install, I was able to start the development server with npm run dev. However, when accessing the application in the browser (http://localhost:5173), errors appeared indicating that the dependencies react-use and appwrite could not be found.
Upon checking package.json and package-lock.json, I noticed that these dependencies are completely missing from the project, meaning they were never installed.
Steps to Reproduce:
- Clone the repository:
git clone <repo-url> cd <repo-folder>
- Install dependencies:
npm install
- Run the development server:
npm run dev
- Open the browser and navigate to
http://localhost:5173 - Observe errors related to missing
react-useandappwrite.
Expected Behavior:
The project should include all required dependencies in package.json, and the application should work without missing dependency errors.
Suggested Fix:
The missing dependencies should be installed and added to package.json:
npm install react-use appwriteThen, commit the updated package.json and package-lock.json:
git add package.json package-lock.json
git commit -m "fix: add missing dependencies react-use and appwrite"Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels