When contributing to this repository, please first discuss the change you wish to make via issue, pull request, or any other method with the owners of this repository before making a change.
Please follow the code of conduct in all your interactions with the project.
This section will walk you through how to get started working with the code.
We recommend you install Node Version Manager for UNIX systems or Windows.
All code changes must work on the minimum Node version specified in package.json under the "engines" key.
Begin by creating a fork of this repo and cloning the fork. Then run npm install
to install necessary dependencies.
The following tools will help you manage MongoDB locally on your machine.
- For setting up a cluster to test against, we recommend using mtools.
- For managing installed versions of MongoDB, we recommend using m.
One option to get up and running quickly is to use a preconfigured VS Code workspace. Save the the workspace file in a directory separate from the directory where you cloned this repo. Open the workspace file in VS Code, and update folders.path
to point to your local driver
directory.
Alternatively, if you just want to get formatting and linting working automatically without using the workspace file, add these settings to your VS Code code workspace:
"settings":{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
}
}
We recommended these VS Code extensions:
This repo contains a suite of automated tests. See the Testing README for more details.
Please follow the Conventional Commits specification. The format should look something like the following (note the blank lines):
<type>(<scope>): <subject>
<body>
If there is a relevant NODE Jira ticket, reference the ticket number in the scope portion of the commit.
Note that a BREAKING CHANGE commit should include an exclamation mark after the scope, for example:
feat(NODE-xxxx)!: created new version api, removed support for old version
This helps the team automate HISTORY.md generation. These are the commit types we make use of:
- feat: A new feature or deprecating (not removing) an existing feature
- fix: A bug fix
- docs: Documentation only changes
- style: Changes that do not affect the meaning of the code (e.g, formatting)
- refactor: A code change that neither fixes a bug nor adds a feature
- perf: A code change that improves performance
- test: Adds missing or corrects existing test(s)
- chore: Changes to the build process or auxiliary tools and libraries such as documentation generation
Below are some conventions that aren't enforced by any of our tooling but we nonetheless do our best to adhere to:
- Disallow
export default
syntax- For our use case, it is best if all imports / exports remain named.
- As of 4.0 all code in src is in Typescript
- Typescript provides a nice developer experience. As a product of using TS, we should be using ES6 syntax features whenever possible.
- Errors
- Error messages should be sentence case and have no periods at the end.
- Use driver-specific error types where possible (not just
Error
, but classes that extendMongoError
, e.g.MongoNetworkError
).
- Update the README.md or similar documentation with details of changes you wish to make, if applicable.
- Add any appropriate tests.
- Make your code or other changes.
- Please adhere to the guidelines in How to write the perfect pull request, thanks!
- Please perform a self-review using the reviewer guidelines below prior to taking the PR out of draft state.
Reviewers should use the following questions to evaluate the implementation for correctness/completeness and ensure all housekeeping items have been addressed prior to merging the code.
- Correctness/completeness
- Do you fully understand the implementation? (Would you be comfortable explaining how this code works to someone else?)
- Does the code meet the acceptance criteria?
- If there is an associated spec, does the code match the spec?
- Is the intention of the code captured in relevant tests?
- Does the description of each test accurately represent the assertions?
- For any test explicitly called out on the ticket as desirable to implement, was it implemented?
- If there are prose spec tests, were they implemented?
- If there are associated automated spec tests, were they all pulled in and are they all running and correctly interpreting the spec inputs?
- Are any runner changes needed to process new input types?
- Could these changes impact any adjacent functionality?
- Are there any errors that might not be correctly caught or propagated?
- Is there anything that could impact performance?
- Are there any race conditions in the functional code or tests?
- Can you think of a better way to implement any of the functional code or tests? "Better" means any combination of:
- more performant
- better organized / easier to understand / clearer separation of concerns
- easier to maintain (easier to change, harder to accidentally break)
- Housekeeping
- Does the title and description of the PR reference the correct Jira ticket and does it use the correct conventional commit type (e.g., fix, feat, test, breaking change etc)?
- If the change is breaking, ensure there is an exclamation mark after the scope (e.g., "fix(NODE-xxx)!: <description>" )
- If there are new TODOs, has a related Jira ticket been created?
- Are symbols correctly marked as internal or public?
- Do the Typescript types match expected runtime usage? Are there tests for new or updated types?
- Should any documentation be updated?
- Has the relevant internal documentation been updated as part of the PR?
- Have the external documentation requirements been captured in Jira?
- Does the title and description of the PR reference the correct Jira ticket and does it use the correct conventional commit type (e.g., fix, feat, test, breaking change etc)?