“Node JS Server” Ответ

Как создать сервер в узле JS

// code by VARSHITH REDDY SATTI
// to create a server in node.js you should.
var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  res.write("write html code to display you test")
  res.end();
}).listen(8080);
// save this as httpServer.js
// run this by typing node httpServer.js in the command line
// to acess your server got to http://localhost:8080
Crown Of Thorns Starfish

Node JS Server

const express = require('express')
const app = express()
const port = 3000

app.get('/', (req, res) => res.send('Hello World!'))

app.listen(port, () => console.log(`Example app listening at http://localhost:${port}`))
Encouraging Elk

Node.js Web Server

var http = require('http');

http.createServer(function (req, res) {
	res.write('Hello World!');
    res.end();
}).listen(8080);
Astra Logical

Как создать Node JS -сервер

const http = require('node:http');

const hostname = '127.0.0.1';
const port = 3000;

const server = http.createServer((req, res) => {
  res.statusCode = 200;
  res.setHeader('Content-Type', 'text/plain');
  res.end('Hello, programmer!');
});

server.listen(port, hostname, () => {
  console.log(`Server running at http://${hostname}:${port}/`);
});
Iqbal

Ответы похожие на “Node JS Server”

Вопросы похожие на “Node JS Server”

Больше похожих ответов на “Node JS Server” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования