Thank you for your interest in contributing to minecraft-api! We welcome all contributions, whether bug reports, feature requests, documentation improvements, or code.
Click the "Fork" button at the top right of the repository page to create your own copy.
git clone https://github.com/YOUR_USERNAME/minecraft-api.git
cd minecraft-apinpm installCreate a new branch for your feature or bugfix:
git checkout -b my-featureEdit the code, add tests if needed, and ensure everything builds:
npm run buildFormat your code using Prettier:
npm run formatgit add .
git commit -m "Describe your change"
git push origin my-featureGo to your fork on GitHub and open a pull request against the main branch of the upstream repository.
- Follow the Code of Conduct.
- Write clear, concise commit messages.
- Add or update documentation as needed.
- Ensure your code passes CI and builds successfully.
If you find a bug or have a feature request, please open an issue.
Thank you for helping make minecraft-api better!