Thank you for your interest in Groceristar Fetch
, an open source project
administered by groceristar.
This project's main aim is to provide an API for getting food data.
- npm
- node
Install the above two package using your package manager.
- Fork the Repo and clone it into the repo using
git clone https://github.com/GITHUBUSERNAME/groceristar-fetch.git
- Install the dependencies using
npm install
- Find/Create an issue in Groceristar issues page and comment that you are working.
- Create new branch named fix-#ISSUENUMBER using
git checkout -b fix-#ISSUENUMBER
Replace ISSUENUMBER with the number of the issue you are working on. You can use other branch names too. But it is advised to use this format especially when fixing bugs.
- Add the changes and commit them
git add [FILE1] [FILE2]
git commit -m COMMIT_MESSAGE
- Push the commit using
- Create a PR in github repo page of yours.
Note:
- Adhere to code style outlined in the Google Javascript Style Guide.
This project uses Jest for testing. To Run the tests,
npm test