Contributing

    • Please don’t make worse.

    • Ask for help in the community chat room.

    • If you are going to work on an issue, mention so in the issue comments before you start working on the issue.

    • If you are going to work on a new feature, create an issue and discuss with other contributors before you start working on the feature.

    Instructions on how to build from source can be found .

    Submitting a Pull Request

    Before submitting, please make sure the following is done:

    1. Give the PR a descriptive title.

    Examples of good PR title:

    • fix(std/http): Fix race condition in server
    • feat(doc): Handle nested re-exports

    Examples of bad PR title:

    • fix #7123
    • update docs
    • fix bugs
    1. Ensure there is a related issue and it is referenced in the PR text.
    2. Ensure there are tests that cover the changes.
    3. Ensure cargo test passes.
    4. Ensure passes.

    Adding Ops (aka bindings)

    We are very concerned about making mistakes when adding new APIs. When adding an Op to Deno, the counterpart interfaces on other platforms should be researched. Please list how this functionality is done in Go, Node, Rust, and Python.

    As an example, see how was proposed and added in PR #671.

    Summary of the changes from previous releases can be found .

    Documenting APIs

    It is important to document public APIs and we want to do that inline with the code. This helps ensure that code and documentation are tightly coupled together.

    Find more at: https://jsdoc.app/