Thanks for your interest in contributing to this project! This document aims to serve as a friendly guide for making your first contribution.
You will need:
git clone https://github.com/izavits/node.analytics.git
cd node.analyticsInstall the npm dependencies by running:
npm installTo run the test suite, run the following command:
npm testThe test suite is run automatically by CI servers when you send a pull request.
When sending a pull request, consider the following guidelines:
-
Write a concise commit message explaining your changes.
-
If applies, write more descriptive information in the commit body.
-
Refer to the issue/s your pull request fixes (if there are issues in the github repo).
-
Write a descriptive pull request title.
-
Squash commits when possible.
Before your pull request can be merged, the following conditions must hold:
-
All the tests passes.
-
The coding style aligns with the project's convention.
-
Your changes are confirmed to be working.
Working on your first Pull Request? You can learn how from this free series How to Contribute to an Open Source Project on GitHub