Describe the bug
The README.md instructs users to run the Node.js frontend application locally using npm start after executing npm install. However, this leads to errors as the package.json file specifies "dev" under the script section instead of "start".
Screenshots
Steps to Reproduce:
Clone the repository.
Navigate to the frontend directory.
Execute npm install.
Attempt to start the application using npm run dev.
Expected Behavior:
The application should start successfully without errors, as indicated in the README.md.
Actual Behavior:
Running npm start results in errors due to the "dev" script being specified in the package.json file.
Proposed Solution:
Update the README.md instructions to reflect the correct command for starting the application, which is npm run dev instead of npm start.
Describe the bug The README.md instructs users to run the Node.js frontend application locally using
npm start
after executingnpm install
. However, this leads to errors as thepackage.json
file specifies "dev" under the script section instead of "start".Screenshots
Steps to Reproduce:
npm install
.npm run dev
.Expected Behavior: The application should start successfully without errors, as indicated in the README.md.
Actual Behavior: Running
npm start
results in errors due to the "dev" script being specified in the package.json file.Proposed Solution: Update the README.md instructions to reflect the correct command for starting the application, which is
npm run dev
instead ofnpm start
.Are you working on it? Yes