Welcome, so you are thinking about contributing to PouchDB? awesome, this is a great place to start.
The following documentation should answer most of the common questions about how to get starting contributing, if you have any questions, please feel free to ask on the PouchDB Mailing List or in #pouchdb on irc.freenode.net.
Most project discussions should happen on the Mailing list / Bug Tracker and IRC, however if you are a first time contributor and want some help getting started feel free to send a private email to any of the following maintainers:
We hold a weekly ‘office hours’ meeting on IRC (irc.freenode.net#pouchdb) on Mondays at 5:00PM UTC (9:00 AM Pacific, 12:00 PM Eastern, 10:30 PM IST), this is open to anyone and a time when developers and users discuss issues they are having or working on.
If you are looking for something to work on, we try to maintain a list of issues that should be suitable for first time contributions, they can be found tagged help wanted.
$ npm test to lint test the changes and run node tests. Preferably run the browser tests as well.(#99) - A brief one line description < 50 chars Followed by further explanation if needed, this should be wrapped at around 72 characters. Most commits should reference an existing issue
PouchDB needs the following to be able to build and test your build, if you haven't installed them then best to do do so now, we will wait.
All dependancies installed? great, now building PouchDB itself is a breeze:
$ cd pouchdb $ npm install $ npm run build
You will now have various distributions of PouchDB in your dist folder, congratulations.
node-gyp to install levelup, visit https://github.com/TooTallNate/node-gyp#installation for installation instructions.Running PouchDB tests is really simple (5 minutes), go to TESTING for instructions.
PouchDB uses the debug module for debug logging, to turn on the log output enable the debug flag in node:
DEBUG=pouchdb:*
Or in the browser:
PouchDB.debug.enable('pouchdb:*');
Workflows can vary, but here is a very simple workflow for contributing a bug fix:
$ git clone git@github.com:myfork/pouchdb.git $ git remote add pouchdb https://github.com/pouchdb/pouchdb.git $ git checkout -b 121-issue-keyword master # Write tests + code $ git add src/afile.js $ git commit -m "(#121) - A brief description of what I changed" $ git push origin 121-issue-keyword
The source for the website http://pouchdb.com is stored inside the docs directory of the PouchDB repository, you can make changes and submit pull requests as with any other patch. To build and view the website locally you will need to install jekyll then:
$ npm run build-site
You should now find the documentation at http://127.0.0.1:4000
Writing a blog post for PouchDB is exactly the same process as other contributions, the blog posts are kept @ https://github.com/pouchdb/pouchdb/tree/master/docs/_posts, just build the site as documented above, its usually easiest to copy an existing post and write away.
If you want to be sure the blog post is relevant, open an issue on what you want to write about to hear back from reviewers.
With great power comes great responsibility yada yada yada:
tin -v x.x.x-prerelease with x.x.x being the previous version upgraded appropriately via semver. When we are ready to publish to npm we can remove the -prerelease../node_modules/.bin/tin -v $VERSIONlib/version-browser.js toonpm run releasedist/pouchdb* files from the $VERSION tag on github, paste the release notes and add the distribution files to Github Releases, rename pouchdb.min.js to pouchdb-$VERSION.min.js after you upload it../node_modules/.bin/tin -v $VERSION+1-prereleaselib/version-browser.js toonpm run publish-site