Thank you for considering contributing to Anchorr! We appreciate all kinds of contributions, from bug reports to new features.
## 🎯 Ways to Contribute ### 🐛 Report Bugs Found a bug? Please help us fix it! **When reporting, include:** - Clear, descriptive title - Steps to reproduce the issue - Expected vs. actual behavior - Console logs/error messages - Your environment (Node.js version, OS, etc.) - Screenshots if applicable [Open a bug report](https://github.com/nairdahh/anchorr/issues/new?labels=bug&template=bug_report.md) ### 💡 Suggest Features Have an idea to improve Anchorr? **Before submitting:** - Check existing issues to avoid duplicates - Provide a clear use case - Explain the expected behavior - Discuss the implementation approach [Suggest a feature](https://github.com/nairdahh/anchorr/issues/new?labels=enhancement&template=feature_request.md) ### 📝 Improve Documentation Help us improve README, guides, or inline code comments! ### 🌐 Add Translations Anchorr supports multiple languages! Help make it accessible to more users by contributing translations. The translation system is fully automated! **Currently supported languages:** - English (en) - Base language - German (de) - Fully translated - Swedish (sv) - Available - French (fr) - Fully translated #### How to Add a New Language 1. Copy `locales/template.json` to `locales/text` - Code formatting
- `text` - Links
**Automatic Detection:**
The system automatically scans the `locales/` directory, reads the `_meta` section, populates the language dropdown, loads translations when selected, and falls back to English if translation is missing.
### 🔧 Submit Code Changes
We love pull requests! Here's how to submit one:
#### Step 1: Fork & Setup
```bash
# Fork the repo on GitHub, then:
git clone https://github.com/YOUR-USERNAME/anchorr.git
cd anchorr
npm install
```
#### Step 2: Create a Feature Branch
```bash
git checkout -b feature/your-feature-name
# or for bugfixes:
git checkout -b fix/bug-description
```
#### Step 3: Make Changes & Commit
```bash
git add .
git commit -m "feat: add awesome feature"
# Use conventional commits:
# feat: new feature
# fix: bug fix
# docs: documentation
# style: formatting changes
# refactor: code refactoring
# test: adding tests
```
#### Step 4: Push & Create Pull Request
```bash
git push origin feature/your-feature-name
```
Then [open a PR](https://github.com/nairdahh/anchorr/compare) against the `main` branch.
#### PR Guidelines
- ✅ Keep PRs focused on a single feature/fix
- ✅ Write clear commit messages
- ✅ Update README if adding new features
- ✅ Test locally before submitting
- ✅ Link related issues
## 💬 Communication
- **Questions?** Open an issue with the `question` label
- **Discussion?** Start a GitHub Discussion
- **Need help?** Check existing documentation or issues first