First of all, thanks! Community contribution is what makes open source great. If you find a bug or would like to make a feature request, please report it on the issue tracker. If you would like to make changes to the code yourself, read on!
To get started with working on Rekapi, you'll need to get all of the dependencies:
$: npm install
The project maintainer (@jeremyckahn) manages
releases. master
contains the latest stable code, and develop
contains
commits that are ahead of (newer than) master
that have yet to be officially
released (built and tagged). When making a Pull Request, please branch off of
develop
and request to merge back into it. master
is only merged into
from develop
.
$: npm run build
A note about the dist/
directory: You should not modify the files in this
directory manually, as your changes will be overwritten by the build process.
The Rekapi source files are in the src/
directory.
Please make sure that all tests pass before submitting a Pull Request. To run the tests on the command line:
$: npm run test
Please try to remain consitent with existing code. To automatically check for style issues or other potential problems, you can run:
$: npm run lint