Onboarding

This document is an outline of the things we tell new Collaborators at their onboarding session.

One week before the onboarding session

  • Confirm that the new Collaborator is using two-factor authentication on their GitHub account. Unless two-factor authentication is enabled, do not give an account elevated privileges such as the ability to land code in the main repository or to start continuous integration (CI) jobs.

Fifteen minutes before the onboarding session

  • Prior to the onboarding session, add the new Collaborator to the Collaborators team. Note that this is the step that gives the account elevated privileges, so do not perform this step (or any subsequent steps) unless two-factor authentication is enabled on the new Collaborator's GitHub account.

Onboarding session

Local setup

Project goals & values

  • collaborators are effectively part owners

    • the project has the goals of its contributors
  • but, there are some higher-level goals and values

    • not everything belongs in core (if it can be done reasonably in userland, let it stay in userland)
    • empathy towards users matters (this is in part why we onboard people)
    • generally: try to be nice to people

Managing the issue tracker

  • you have (mostly) free rein – don't hesitate to close an issue if you are confident that it should be closed

    • IMPORTANT: be nice about closing issues, let people know why, and that issues and PRs can be reopened if necessary
    • Still need to follow the Code of Conduct
  • See “Labels”

    • There is a bot that applies subsystem labels (for example, doc, test, assert, or buffer) so that we know what parts of the code base the pull request modifies. It is not perfect, of course. Feel free to apply relevant labels and remove irrelevant labels from pull requests and issues.
    • Use the ctc-review label if a topic is controversial or isn't coming to a conclusion after an extended time.
    • semver-{minor,major}:
      • If a change has the remote chance of breaking something, use the semver-major label
      • When adding a semver label, add a comment explaining why you‘re adding it. Do it right away so you don’t forget!
  • See “Who to CC in issues”

    • will also come more naturally over time
  • When a discussion gets heated, you can request that other collaborators keep an eye on it by opening an issue at the private nodejs/moderation repository.

    • This is a repository to which all members of the nodejs GitHub organization (not just Collaborators on Node.js core) have access. Its contents should not be shared externally.
    • You can find the full moderation policy here.

Reviewing PRs

  • The primary goal is for the codebase to improve.

  • Secondary (but not far off) is for the person submitting code to succeed. A pull request from a new contributor is an opportunity to grow the community.

  • Review a bit at a time. Do not overwhelm new contributors.

    • It is tempting to micro-optimize and make everything about relative performance. Don't succumb to that temptation. We change V8 often. Techniques that provide improved performance today may be unnecessary in the future.
  • Be aware: Your opinion carries a lot of weight!

  • Nits (requests for small changes that are not essential) are fine, but try to avoid stalling the pull request.

    • Note that they are nits when you comment: Nit: change foo() to bar().
    • If they are stalling the pull request, fix them yourself on merge.
  • Minimum wait for comments time

    • There is a minimum waiting time which we try to respect for non-trivial changes, so that people who may have important input in such a distributed project are able to respond.
    • For non-trivial changes, leave the pull request open for at least 48 hours (72 hours on a weekend).
    • If a pull request is abandoned, check if they'd mind if you took it over (especially if it just has nits left).
  • Approving a change

    • Collaborators indicate that they have reviewed and approve of the the changes in a pull request by commenting with LGTM, which stands for “looks good to me”.
    • You have the power to LGTM another collaborator's (including TSC/CTC members) work.
    • You may not LGTM your own pull requests.
    • You have the power to LGTM anyone else's pull requests.
  • What belongs in node:

    • opinions vary, but I find the following helpful:
    • if node itself needs it (due to historic reasons), then it belongs in node
      • that is to say, url is there because of http, freelist is there because of http, et al
    • also, things that cannot be done outside of core, or only with significant pain (example: async-wrap)
  • Continuous Integration (CI) Testing:

    • https://ci.nodejs.org/
      • It is not automatically run. You need to start it manually.
    • Log in on CI is integrated with GitHub. Try to log in now!
    • You will be using node-test-pull-request most of the time. Go there now!
    • To get to the form to start a job, click on Build with Parameters. (If you don't see it, that probably means you are not logged in!) Click it now!
    • To start CI testing from this screen, you need to fill in two elements on the form:
      • The CERTIFY_SAFE box should be checked. By checking it, you are indicating that you have reviewed the code you are about to test and you are confident that it does not contain any malicious code. (We don't want people hijacking our CI hosts to attack other hosts on the internet, for example!)
      • The PR_ID box should be filled in with the number identifying the pull request containing the code you wish to test. For example, if the URL for the pull request is https://github.com/nodejs/node/issues/7006, then put 7006 in the PR_ID.
      • The remaining elements on the form are typically unchanged with the exception of POST_STATUS_TO_PR. Check that if you want a CI status indicator to be automatically inserted into the PR.
    • If you need help with something CI-related:
      • Use #node-dev (IRC) to talk to other Collaborators.
      • Use #node-build (IRC) to talk to the Build WG members who maintain the CI infrastructure.
      • Use the Build WG repo to file issues for the Build WG members who maintain the CI infrastructure.

Landing PRs

Exercise: Make a PR adding yourself to the README

  • Example: https://github.com/nodejs/node/commit/7b09aade8468e1c930f36b9c81e6ac2ed5bc8732
    • For raw commit message: git log 7b09aade8468e1c930f36b9c81e6ac2ed5bc8732 -1
  • Collaborators are in alphabetical order by GitHub username.
  • Optionally, include your personal pronouns.
  • Label your pull request with the doc subsystem label.
  • Run CI on your PR.
  • After a LGTM or two, land the PR.
    • Be sure to add the PR-URL: <full-pr-url> and appropriate Reviewed-By: metadata!

Final notes