Thank you for your interest in contributing to this project! Here's how you can help.
- Fork the repository.
- Clone your fork:
git clone https://github.com/<your-username>/testing.git cd testing
- Create a new branch for your work:
git checkout -b feature/your-feature-name
- Make your changes in the new branch.
- Test your changes locally:
node server.js
- Ensure the server runs correctly and responds as expected.
- Commit your changes with a clear, descriptive message:
git add . git commit -m "Add: brief description of your change"
- Push your branch to your fork:
git push origin feature/your-feature-name
- Open a Pull Request against the
mainbranch. - Describe what your PR does and why the change is needed.
- Keep changes focused and minimal — one feature or fix per PR.
- Write clear commit messages.
- Be respectful and constructive in discussions.
If you find a bug or have a suggestion, please open an issue with:
- A clear title and description.
- Steps to reproduce the issue (if applicable).
- Expected vs. actual behavior.