Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 1.23 KB

CONTRIBUTING.md

File metadata and controls

46 lines (29 loc) · 1.23 KB

Contributing to use-axios-client

Contributing to use-axios-client isn't limited to just filing bugs. Users are more than welcomed to make suggestions, report any issue they may find, and make pull requests to help make use-axios-client better.

Working on use-axios-client

Requirements

Setup

Clone the repository:

$ git clone https://github.com/angelle-sw/use-axios-client

Install dependencies:

$ yarn

Run the example app at http://localhost:8080:

$ cd example
$ yarn
$ yarn start

Run tests using jest:

$ yarn test

Using branches

When working on any issue on Github, it's a good practice to make branches that are specific to the issue you're currently working on. For instance, if you're working on an issue with a name like "Add caching layer #692", from the master branch run the following code: e.g. git checkout -b issue-692-add-caching-layer.

Finding issues to fix

After you've forked and cloned our repo, you can find issues to work on by heading over to our issues list.