Setup Javascript HTTP with Node.js
Did you know you can use a custom HTTP server to run your node.js application? Usually, the app is initialized with npm or npx. A server.js file is usually used for more fine-grained control over the HTTP requests. Simply create a new server.js file in your project root. A basic template: server.js // Import the required modules const { createServer } = require('http'); const { parse } = require('url'); const next = require('next'); // Set the port const port = process.env.PORT || 3000; // Enable/disable development mode const dev = process.env.NODE_ENV !== 'production'; // Create the Next.js app const app = next({ dev }); // Handle HTTP requests const handle = app.getRequestHandler(); app.prepare().then(() => { createServer((req, res) => { // Retrieve the IP const ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress; // Retrieve the hostname/domain and subdomain const hostname = req.headers.host.split(':')[0]; const domain = hostname; const subdomain = hostname.split('.')[0]; // Retrieve the URL const url = req.url; // Parse the request URL const parsedUrl = parse(req.url, true); return handle(req, res, parsedUrl); }).listen(port, err => { if (err) throw err; console.log('> Ready on http://localhost:' + port); }); }); Execute the script: root@root: node server.js

Did you know you can use a custom HTTP server to run your node.js application?
Usually, the app is initialized with npm
or npx
.
A server.js
file is usually used for more fine-grained control over the HTTP requests.
Simply create a new server.js
file in your project root.
A basic template:
server.js
// Import the required modules
const { createServer } = require('http');
const { parse } = require('url');
const next = require('next');
// Set the port
const port = process.env.PORT || 3000;
// Enable/disable development mode
const dev = process.env.NODE_ENV !== 'production';
// Create the Next.js app
const app = next({ dev });
// Handle HTTP requests
const handle = app.getRequestHandler();
app.prepare().then(() => {
createServer((req, res) => {
// Retrieve the IP
const ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress;
// Retrieve the hostname/domain and subdomain
const hostname = req.headers.host.split(':')[0];
const domain = hostname;
const subdomain = hostname.split('.')[0];
// Retrieve the URL
const url = req.url;
// Parse the request URL
const parsedUrl = parse(req.url, true);
return handle(req, res, parsedUrl);
}).listen(port, err => {
if (err) throw err;
console.log('> Ready on http://localhost:' + port);
});
});
Execute the script:
root@root: node server.js