Need to migrate your e-mails to a new server? Free and paid versions of our online tool available.
Hero Image

Server Setup Guides

Install Node.js on Arch Linux

Install Node.js on Arch Linux

Step 1 – Install

pacman -S --noconfirm nodejs npm

Step 2 – Verify

node --version && npm --version

Step 3 – Simple HTTP server

// app.js
const http = require('http');
http.createServer((req, res) => {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  re...
7th May 2026

Install Node.js on Debian 12

Install Node.js on Debian 12

Step 1 – Install

curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
apt install -y nodejs

Step 2 – Verify

node --version && npm --version

Step 3 – Simple HTTP server

// app.js
const http = require('http');
http.createServer((req, res) => {
  res.writeH...
7th May 2026

Install Node.js on NetBSD 10

Install Node.js on NetBSD 10

Step 1 – Install

pkgin install nodejs

Step 2 – Verify

node --version && npm --version

Step 3 – Simple HTTP server

// app.js
const http = require('http');
http.createServer((req, res) => {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello...
7th May 2026

Install Node.js on RHEL 9

Install Node.js on RHEL 9

Step 1 – Install

curl -fsSL https://rpm.nodesource.com/setup_20.x | bash -
dnf install -y nodejs

Step 2 – Verify

node --version && npm --version

Step 3 – Simple HTTP server

// app.js
const http = require('http');
http.createServer((req, res) => {
  res.writeHead...
7th May 2026