Skip to content
Merged
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions apps/site/pages/en/about/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,45 @@ by using our [`child_process.fork()`](https://nodejs.org/api/child_process.html)
communicate with. Built upon that same interface is the [`cluster`](https://nodejs.org/api/cluster.html) module,
which allows you to share sockets between processes to enable load balancing
over your cores.

## Official Node.js Resources

To ensure authenticity and security when working with Node.js, always use official sources. Avoid trusting emails,
binaries, or downloads from unofficial sources.

### Official Node.js Domains

For downloading Node.js binaries and accessing official documentation, use only these domains:

- [nodejs.org](https://nodejs.org)
- [nodejs.dev](https://nodejs.dev) _(Redirects to https://nodejs.org)_
- [iojs.org](https://iojs.org) _(Redirects to https://nodejs.org)_

### Official npm Packages

The Node.js team maintains the following official npm package scopes:

Comment thread
avivkeller marked this conversation as resolved.
- [`@node-core`](https://npmjs.com/~node-core)
- [`@pkgjs`](https://npmjs.com/~pkgjs)

Additionally, the Node.js team maintains packages published by the [`nodejs-foundation`](https://npmjs.com/~nodejs-foundation) npm account,
though other Node.js-related packages (like Ada) may also be maintained by contributors closely tied to the project.
Comment thread
avivkeller marked this conversation as resolved.
Outdated

Using packages from the Node.js team guarantees that you are working with officially supported Node.js components.

### Official GitHub Organizations
Comment thread
avivkeller marked this conversation as resolved.

Node.js and related projects are maintained under these official GitHub organizations:

- [nodejs](https://github.com/nodejs)
- [pkgjs](https://github.com/pkgjs)

### Official Communication Channels

Node.js and the OpenJS Foundation communicate through various official and community-supported channels. You can find details on
how to get involved on the [Get Involved](https://nodejs.org/en/about/get-involved) page.

### Reporting Website Issues & Downtime
Comment thread
avivkeller marked this conversation as resolved.

If you encounter issues with the Node.js website, report them at the [Node.js website repository](https://github.com/nodejs/nodejs.org/issues).
For real-time updates on outages, visit the [Node.js Status Page](https://status.nodejs.org).
Loading