Thank you for your interest in contributing to Node PKill Process! This document provides guidelines and instructions for contributing to this project.
Please review and follow our Code of Conduct to help create a welcoming and inclusive environment for everyone.
There are many ways to contribute to this project:
- Reporting bugs
- Suggesting new features
- Improving documentation
- Contributing code fixes
- Adding new features
- Writing tests
- Reviewing pull requests
When reporting issues, please include:
- A clear title and description
- Steps to reproduce the problem
- Expected behavior
- Actual behavior
- Environment information (OS, Node.js version, etc.)
- Any relevant logs or screenshots
- Fork the repository
- Clone your fork:
git clone https://github.com/YOUR_USERNAME/node-pkill-process.git - Navigate to the project directory:
cd node-pkill-process - Install dependencies:
npm install - Run the project:
npm start
- Create a new branch for your feature or bug fix:
git checkout -b feature/your-feature-nameorgit checkout -b bugfix/your-fix-name - Make your changes
- Ensure your code follows the project's style and passes all tests
- Commit your changes using clear, descriptive commit messages
- Push your branch to your fork:
git push origin feature/your-feature-name - Open a pull request to the
mainbranch of the original repository
- Write clear, readable code with meaningful variable names
- Comment your code where necessary, especially for complex logic
- Follow existing code style and patterns
- Use consistent indentation (2 spaces)
- Run
npm testto ensure your changes don't break existing functionality
If you have any questions about contributing, feel free to open an issue or contact the maintainers.
Thank you again for your contribution!