We welcome contributions to this project. Please read the following guidelines.
If you find a bug or have a feature request, please open an issue on GitHub
- Fork this repository by clicking on the fork button on the top of this page. This will create a copy of this repository in your account.
- Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the copy to clipboard icon.
- Open a terminal and run the following git command:
git clone https://github.com/your-username/tiktok-api-dl.git
- Change to the repository directory on your computer (if you are not already there):
cd tiktok-api-dl
- Now create a branch using the git checkout command:
git checkout -b your-new-branch-name
- Make the changes in the code as per the requirements mentioned in the issue.
- Now add the changes to the branch you just created using the git add command:
git add .
- Now commit those changes using the git commit command:
git commit -m "Your commit message"
We structure our commit messages like this:
feat: add new feature
fix: correct a bug
docs: document changes
style: formatting, missing semi colons, etc; no code change
refactor: refactoring production code
test: adding tests, refactoring test; no production code change
chore: updating build tasks, package manager configs, etc; no production code change
Example:
git commit -m "fix: bug in TiktokAPI.ts file"
- Push your changes using the command git push:
git push origin your-branch-name
- If you go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button.
- Now submit the pull request.
Please read our Code of Conduct before contributing.
By contributing to tiktok-api-dl, you agree that your contributions will be licensed under its MIT license.