node/doc
Joyee Cheung 3e31baeda6
esm: use sync loading/resolving on non-loader-hook thread
ESM resolution and loading is now always synchronous from a
non-loader-hook thread. If no asynchrnous loader hooks are
registered, the resolution/loading is entirely synchronous.
If asynchronous loader hooks are registered, these would be
synchronous on the non-loader-hook thread, and asynchronous
on the loader hook thread.

This avoids several races caused by async/sync loading sharing
the same cache. In particular, asynchronous loader hooks
now works with `require(esm)` - previously it tends to break
due to races.

In addition, when an asynchronous loader hook
returns a promise that never settles, the main thread no longer
silently exits with exit code 13, leaving the code below
any module loading calls silently ignored without being executed.
Instead, it now throws ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED
which can be caught and handled by the main thread. If the module
request comes from `import()`, the never-settling promise is
now relayed to the result returned by `import()`.

Drive-by: when annotating the error about importing undetectable
named exports from CommonJS, it now no longer reload the source
code of the CommonJS module, and instead reuses format information
cached when the module was loaded for linking.

PR-URL: https://github.com/nodejs/node/pull/60380
Fixes: https://github.com/nodejs/node/issues/59666
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Jacob Smith <jacob@frende.me>
2025-10-31 20:45:10 +00:00
..
api esm: use sync loading/resolving on non-loader-hook thread 2025-10-31 20:45:10 +00:00
api_assets doc: add scroll margin to links 2025-07-10 16:22:51 +02:00
changelogs doc: add known issue to v24.11.0 release notes 2025-10-28 21:13:50 +00:00
contributing meta: call create-release-post.yml post release 2025-10-28 19:19:51 +00:00
abi_version_registry.json doc: reserve NMV 143 for Electron 40 2025-10-26 09:08:56 +00:00
eslint.config_partial.mjs tools: import rather than require ESLint plugins 2025-03-07 14:52:52 +00:00
full-white-stripe.jpg build: update Node.js logo on Win installer 2016-03-06 20:22:36 -06:00
node-config-schema.json src: add watch config namespace 2025-10-20 13:53:29 +02:00
node.1 test,doc: skip --max-old-space-size-percentage on 32-bit platforms 2025-10-09 16:23:51 +00:00
osx_installer_logo.png build: update Node.js logo on OSX installer 2016-02-27 16:49:56 +11:00
README.md doc: update style guide 2024-09-26 22:56:35 +00:00
template.html doc: add "Skip to content" button 2025-01-26 18:41:45 +00:00
thin-white-stripe.jpg build: update Node.js logo on Win installer 2016-03-06 20:22:36 -06:00

Node.js documentation style guide

This guide provides clear and concise instructions to help you create well-organized and readable documentation for the Node.js community. It covers organization, spelling, formatting, and more to ensure consistency and professionalism across all documents.

Table of contents

  1. General Guidelines
  2. Writing Style
  3. Punctuation
  4. Document Structure
  5. API Documentation
  6. Code Blocks
  7. Formatting
  8. Product and Project Naming

General guidelines

File naming

  • Markdown Files: Use lowercase-with-dashes.md.
    • Use underscores only if they are part of the topic name (e.g., child_process).
    • Some files, like top-level Markdown files, may be exceptions.

Text wrapping

  • Wrap documents at 120 characters per line to enhance readability and version control.

Editor configuration

  • Follow the formatting rules specified in .editorconfig.
    • A plugin is available for some editors to enforce these rules.

Testing documentation

  • Validate documentation changes using make test-doc -j or vcbuild test-doc.

Writing style

Spelling and grammar

  • Spelling: Use US spelling.
  • Grammar: Use clear, concise language. Avoid unnecessary jargon.

Commas

  • Serial Commas: Use serial commas for clarity.
    • Example: apples, oranges, and bananas

Pronouns

  • Avoid first-person pronouns (I, we).
    • Exception: Use we recommend foo instead of foo is recommended.

Gender-neutral language

  • Use gender-neutral pronouns and plural nouns.
    • OK: they, their, them, folks, people, developers
    • NOT OK: his, hers, him, her, guys, dudes

Terminology

  • Use precise technical terms and avoid colloquialisms.
  • Define any specialized terms or acronyms at first use.

Punctuation

Terminal punctuation

  • Place inside parentheses or quotes if the content is a complete clause.
  • Place outside if the content is a fragment of a clause.

Quotation marks

  • Use double quotation marks for direct quotes.
  • Use single quotation marks for quotes within quotes.

Colons and semicolons

  • Use colons to introduce lists or explanations.
  • Use semicolons to link closely related independent clauses.

Document structure

Headings

  • Start documents with a level-one heading (#).
  • Use subsequent headings (##, ###, etc.) to organize content hierarchically.
  • Prefer reference-style links ([a link][]) over inline links ([a link](http://example.com)).

Lists

  • Use bullet points for unordered lists and numbers for ordered lists.
  • Keep list items parallel in structure.

Tables

  • Use tables to present structured information clearly. Ensure they are readable in plain text.

API documentation

YAML comments

  • Update the YAML comments associated with the API, especially when introducing or deprecating an API.

Usage examples

  • Provide a usage example or a link to an example for every function.

Parameter descriptions

  • Clearly describe parameters and return values, including types and defaults.
    • Example:
      * `byteOffset` {integer} Index of first byte to expose. **Default:** `0`.
      

Code blocks

Language-aware fences

  • Use language-aware fences (e.g., ```js) for code blocks.

    • Info String: Use the appropriate info string from the following list:

      Language Info String
      Bash bash
      C c
      CommonJS cjs
      CoffeeScript coffee
      Terminal Session console
      C++ cpp
      Diff diff
      HTTP http
      JavaScript js
      JSON json
      Markdown markdown
      EcmaScript mjs
      Powershell powershell
      R r
      Plaintext text
      TypeScript typescript
    • Use text for languages not listed until their grammar is added to remark-preset-lint-node.

Code comments

  • Use comments to explain complex logic within code examples.
  • Follow the standard commenting style of the respective language.

Formatting

Escaping characters

  • Use backslash-escaping for underscores, asterisks, and backticks: \_, \*, \`.

Naming conventions

  • Constructors: Use PascalCase.
  • Instances: Use camelCase.
  • Methods: Indicate methods with parentheses: socket.end() instead of socket.end.

Function arguments and returns

  • Arguments:
    * `name` {type|type2} Optional description. **Default:** `value`.
    
    Example:
    * `byteOffset` {integer} Index of first byte to expose. **Default:** `0`.
    
  • Returns:
    * Returns: {type|type2} Optional description.
    
    Example:
    * Returns: {AsyncHook} A reference to `asyncHook`.
    

Product and project naming

Official styling

  • Use official capitalization for products and projects.
    • OK: JavaScript, Google's V8
    • NOT OK: Javascript, Google's v8

Node.js references

  • Use Node.js instead of Node, NodeJS, or similar variants.
    • For the executable, node is acceptable.

Version references

  • Use Node.js and the version number in prose. Do not prefix the version number with v.
    • OK: Node.js 14.x, Node.js 14.3.1
    • NOT OK: Node.js v14

For topics not addressed here, please consult the Microsoft Writing Style Guide.