CARVIEW |
Select Language
HTTP/2 307
date: Thu, 09 Oct 2025 03:10:57 GMT
content-type: text/plain
server: cloudflare
location: /en
cf-ray: 98bab01888b58839-BLR
cf-cache-status: DYNAMIC
cache-control: public, max-age=0, must-revalidate
set-cookie: NEXT_LOCALE=en; Path=/; SameSite=lax
strict-transport-security: max-age=31536000; includeSubDomains; preload
x-content-type-options: nosniff
x-vercel-id: bom1::7dgdt-1759979457405-088afe5dd898
vary: Accept-Encoding
HTTP/2 200
date: Thu, 09 Oct 2025 03:10:57 GMT
content-type: text/html; charset=utf-8
content-encoding: gzip
cf-ray: 98bab018e9228839-BLR
cf-cache-status: DYNAMIC
age: 169
cache-control: public, max-age=0, must-revalidate
strict-transport-security: max-age=31536000; includeSubDomains; preload
vary: rsc, next-router-state-tree, next-router-prefetch, next-router-segment-prefetch, accept-encoding
x-content-type-options: nosniff
x-matched-path: /[locale]
x-nextjs-prerender: 1
x-nextjs-stale-time: 300
x-powered-by: Next.js
x-vercel-cache: HIT
x-vercel-id: bom1::cdg1::zfhlm-1759979457463-3bef397b1daa
server: cloudflare
Node.js — Run JavaScript Everywhere
Run JavaScript Everywhere
Node.js® is a free, open-source, cross-platform JavaScript runtime environment that lets developers create servers, web apps, command line tools and scripts.
Get Node.js®Get Node.js®Get security support
for EOL Node.js versionsNode.js is proudly supported by the partners above and more.
for EOL Node.js versions
// server.mjs
import { createServer } from 'node:http';
const server = createServer((req, res) => {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello World!\n');
});
// starts a simple http server locally on port 3000
server.listen(3000, '127.0.0.1', () => {
console.log('Listening on 127.0.0.1:3000');
});
// run with `node server.mjs`
JavaScript
Learn more what Node.js is able to offer with our Learning materials.