Skip to content

Latest commit

 

History

History
53 lines (34 loc) · 1.32 KB

CONTRIBUTION.md

File metadata and controls

53 lines (34 loc) · 1.32 KB

Contributing

We welcome contributions to the SharpAPI Node.js SDK Client! If you'd like to contribute, please follow these steps:

  1. Fork the Repository

    Click the "Fork" button at the top-right corner of the repository page to create your own fork.

  2. Clone the Forked Repository

    git clone https://github.com/yourusername/sharpapi-node-client.git
  3. Navigate to the Project Directory

    cd sharpapi-node-client
  4. Create a New Branch

    git checkout -b feature/your-feature-name
  5. Make Your Changes

    Implement your feature or bug fix.

  6. Commit Your Changes

    git add .
    git commit -m "Add feature: Your Feature Name"
  7. Push to Your Fork

    git push origin feature/your-feature-name
  8. Create a Pull Request

    Go to the original repository on GitHub and create a pull request from your forked repository.

Guidelines

  • Follow Coding Standards: Ensure your code adheres to the existing coding style.
  • Write Tests: Add tests for your new features or bug fixes.
  • Update Documentation: If your changes affect the usage, update the DOCUMENTATION.md accordingly.
  • Provide Clear Descriptions: Make sure your commit messages and pull request descriptions are clear and concise.