Files
donutbrowser/CONTRIBUTING.md
T

5.5 KiB

Contributing to Donut Browser

Contributions are welcome and always appreciated! 🍩

To begin working on an issue, simply leave a comment indicating that you're taking it on. There's no need to be officially assigned to the issue before you start.

Before Starting

Do keep in mind before you start working on an issue / posting a PR:

  • Search existing PRs related to that issue which might close them
  • Confirm if other contributors are working on the same issue
  • Check if the feature aligns with our roadmap and project goals

Tips & Things to Consider

  • PRs with tests are highly appreciated
  • Avoid adding third party libraries, whenever possible
  • Unless you are helping out by updating dependencies, you should not be uploading your lock files or updating any dependencies in your PR
  • If you are unsure where to start, open a discussion and we will point you to a good first issue

Development Setup

Ensure you have the following dependencies installed:

  • Node.js (see .node-version for exact version)
  • pnpm package manager
  • Latest Rust and Cargo toolchain
  • Tauri prerequisites guide.

Run Locally

After having the above dependencies installed, proceed through the following steps to setup the codebase locally:

  1. Fork the project & clone it locally.

  2. Create a new separate branch.

    git checkout -b feature/my-feature-name
    
  3. Install frontend dependencies

    pnpm install
    
  4. Install nodecar dependencies

    cd nodecar
    pnpm install --frozen-lockfile
    cd ..
    
  5. Start the development server

    pnpm tauri dev
    

This will start the app for local development with live reloading.

Code Style & Quality

We use several tools to maintain code quality:

  • Biome for JavaScript/TypeScript linting and formatting
  • Clippy for Rust linting
  • rustfmt for Rust formatting

Before Committing

Run these commands to ensure your code meets our standards:

# Format and lint frontend code
pnpm format:js

# Format and lint Rust code
pnpm format:rust

# Run all linting
pnpm lint

Building

It is crucial to test your code before submitting a pull request. Please ensure that you can make a complete production build before you submit your code for merging.

# Build the frontend
pnpm build

# Build the backend
cd src-tauri && cargo build

# Build the Tauri application
pnpm tauri build

Make sure the build completes successfully without errors.

Testing

  • Always test your changes on the target platform
  • Test both development and production builds
  • Verify that existing functionality still works
  • Add tests for new features when possible

Pull Request Guidelines

🎉 Now that you're ready to submit your code for merging, there are some points to keep in mind:

PR Description

  • Fill your PR description template accordingly
  • Have an appropriate title and description
  • Include relevant screenshots for UI changes. If you can include video/gifs, it is even better.
  • Reference related issues

Linking Issues

If your PR fixes an issue, add this line in the body of the Pull Request description:

Fixes #00000

If your PR is referencing an issue:

Refs #00000

PR Checklist

  • Code follows our style guidelines
  • I have performed a self-review of my code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • New and existing unit tests pass locally with my changes
  • Any dependent changes have been merged and published

Options

  • Ensure that "Allow edits from maintainers" option is checked

Types of Contributions

Bug Reports

When filing bug reports, please include:

  • Clear description of the issue
  • Steps to reproduce
  • Expected vs actual behavior
  • Environment details (OS, version, etc.)
  • Screenshots or error logs if applicable

Feature Requests

When suggesting new features:

  • Explain the use case and why it's valuable
  • Describe the desired behavior
  • Consider alternatives you've thought of
  • Check if it aligns with our roadmap

Code Contributions

  • Bug fixes
  • New features
  • Performance improvements
  • Documentation updates
  • Test coverage improvements

Documentation

  • README improvements
  • Code comments
  • API documentation
  • Tutorial content
  • Translation work

Architecture Overview

Donut Browser is built with:

  • Frontend: Next.js React application
  • Backend: Tauri (Rust) for native functionality
  • Node.js Sidecar: nodecar binary for proxy support
  • Build System: GitHub Actions for CI/CD

Understanding this architecture will help you contribute more effectively.

Getting Help

  • Issues: Use for bug reports and feature requests
  • Discussions: Use for questions and general discussion
  • Pull Requests: Use for code contributions

Code of Conduct

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

Recognition

All contributors will be recognized! We use the all-contributors specification to acknowledge everyone who contributes to the project.


Thank you for contributing to Donut Browser! 🍩