Skip to content

Latest commit

 

History

History
103 lines (66 loc) · 3.89 KB

contribution.md

File metadata and controls

103 lines (66 loc) · 3.89 KB

Contributing Guidelines for Shery.js

Welcome to the Shery.js open-source project! We're excited that you're interested in contributing. These guidelines are designed to help you understand how to contribute to the project effectively and maintain a collaborative and friendly environment.

Table of Contents

  1. Getting Started

  2. Making Contributions

  3. Submitting Pull Requests

  4. Community and Collaboration

Getting Started

Code of Conduct

Before you start contributing, please read and adhere to our Code of Conduct. We aim to maintain a welcoming and inclusive environment for everyone.

Communication Channels

For discussions, questions, and collaboration, join our communication channel (e.g., Slack, Discord, Gitter).

Forking the Repository

Fork the repository to your GitHub account. This will create a copy of the project in your account that you can freely experiment with.

Setting Up the Development Environment

  1. Clone your forked repository to your local machine.
  2. Navigate to the repository's directory.
  3. Run npm install to install the project dependencies.
  4. You might need to set up any environment variables required for the project.
  5. Start the development server with npm start or your preferred method.

Making Contributions

Creating Issues

If you find a bug, have a feature request, or want to suggest an improvement, open an issue in the issue tracker. Make sure to provide sufficient details to reproduce the issue or understand the proposed feature.

Working on Issues or Features

  1. Assign yourself to an open issue you'd like to work on.
  2. Create a new branch for your work based on the latest main branch.
  3. Implement your changes, following the coding guidelines.
  4. Write tests for the new code or modifications.
  5. Update the documentation if necessary.

Coding Guidelines

  • Follow JavaScript style guide for code formatting.
  • Write clear and meaningful commit messages.
  • Keep your code modular and well-documented.

Testing

  • Write unit tests and integration tests for your code.
  • Run the existing tests using npm test to ensure you didn't break anything.

Documentation

  • Document any new features or changes you've made.
  • Ensure that your documentation is clear and easy to understand.

Submitting Pull Requests

Pull Request Process

  1. Create a pull request from your branch to the original repository's main branch.
  2. Include a descriptive title and detailed description of the changes.
  3. Reference any related issues in your pull request description.

Code Review

  • Expect feedback and be ready to make changes if necessary.
  • Maintain a constructive and respectful attitude during code review.

Community and Collaboration

Acknowledgments

We appreciate all contributions to the project. Contributors will be acknowledged in the project's README or a dedicated contributors list.

License

By contributing, you agree that your contributions will be licensed under the project's license.

Thank you for your interest and contributions to Shery.js! Your efforts help make this project better for everyone.