Feat/added nodemon#1039
Open
tejinderpa wants to merge 2 commits into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Adds a Nodemon-based development workflow and updates docs accordingly, plus a small CSS tweak to stabilize styling where borders may be applied.
Changes:
- Add
npm run devusing Nodemon and include Nodemon as adevDependency. - Update README/CONTRIBUTING to document the new local dev command and production-style start.
- Add
border: 1px solid transparentin a few CSS blocks (likely to avoid layout shift when borders appear on interaction).
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Adds dev script and nodemon dev dependency to support a hot-reload dev loop. |
| css/index.css | Reserves border space via transparent border in multiple repeated style blocks. |
| README.md | Switches “Run Locally” instructions to npm run dev and documents npm start for production-style runs. |
| CONTRIBUTING.md | Adds explicit install + npm run dev steps for contributors. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| color: var(--color-text-secondary); | ||
| padding: 2px 8px; | ||
| border-radius: 12px; | ||
| border: 1px solid transparent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related Issue
Closes #1038
Summary
Added backend hot-reload support for local development using Nodemon, so developers no longer need to manually restart the Node.js server after backend file changes.
Changes Made
Added a dev script in package.json:
npm run dev
Runs nodemon server.js
Kept the existing production-style start script:
npm start
Runs node server.js
Installed nodemon as a development dependency.
Updated README.md to document npm run dev for local development.
Updated CONTRIBUTING.md with setup steps for installing dependencies and starting the development server.
Testing
Ran the test suite with:
npm run test
All tests passed: 5/5.
Screenshots
Add screenshots if UI changes exist.


Intially :
Now :
Checklist