Skip to content

Latest commit

 

History

History
61 lines (52 loc) · 2.9 KB

CONTRIBUTING.md

File metadata and controls

61 lines (52 loc) · 2.9 KB

Woohoo, a new contributor!

Thank you so much for looking into ical.js. With your work you are doing good by making it easier to process calendar data on the web.

To give you a feeling about what you are dealing with, ical.js was originally created as a replacement for libical, meant to be used in Lightning, the calendaring extension to Thunderbird. Using binary components in Mozilla extensions often leads to compatibility issues so a pure JavaScript implementation was needed. It was also used in the Firefox OS calendaring application.

Work on the library prompted creating some standards around it. One of them is jCal (rfc7265), an alternative text format for iCalendar data using JSON. The other document is jCard (rfc7095), which is the counterpart for vCard data.

Pull Requests

In general we are happy about any form of contribution to ical.js. Note however that since the library is used in at least one larger projects, drastic changes to the API should be discussed in an issue beforehand. If you have a bug fix that doesn't affect the API or just adds methods and you don't want to waste time discussing it, feel free to just send a pull request and we'll see.

Also, you should check for linter errors and run the tests using grunt linters and grunt test-node. See the next section for details on tests. As they take a while, you can skip the performance tests using grunt test-node:unit and grunt test-node:acceptance, but if you are uncertain if your change may affect performance, you should run all tests.

Currently the team working on ical.js consists of a very small number of voluntary contributors. If you don't get a reply in a timely manner please don't feel turned down. If you are getting impatient with us, go ahead and send one or more reminders via email or comment.

Tests

To make sure there are no regressions, we use unit testing and continuous integration via Github Actions. Sending a pull request with a unit test for the bug you are fixing or feature you are adding will greatly improve the speed of reviewing and the pull request being merged. Please read the page on running tests in the wiki to set these up and make sure everything passes.

License

ical.js is licensed under the Mozilla Public License, version 2.0.

Last words

If you have any questions please don't hesitate to get in touch. You can leave a comment on an issue, send @kewisch an email, or for ad-hoc questions contact Fallen on chat.mozilla.org.