How to contribute
Do you want to improve pleex? start contributing : D
Start by forking:
Pleex github

Then clone it:
$ git clone https://github.com/<your username/pleex
To make changes create new branch:
git checkout -b [name_of_your_new_branch or feature]
Install dependencies
npm install
Run tests for your code
npm test or jest
Changes done? push it to your repo
git add -A && git commit -m 'fix some bugs' && git push origin master
Last updated
Was this helpful?