I do not know how to create a server in js, please help
4/9/2021 7:57:33 PM
Osadchy Daniel7 Answers
New Answerhttps://www.tutorialsteacher.com/nodejs/create-nodejs-web-server#:~:text=%2F%2F%20Import%20Node.-,js%20core%20module%20var%20server%20%3D%20http.,%2F%2F%20set%20response%20content%20res.
https://www.sololearn.com/post/1007982/?ref=app Why to go other places if you have tutorial here only!! You can create server using nodejs !! What is nodejs how to use it? You will get all your answers here :) Be happy, All the best
You'll need Node.js for this. Here's a good guide for creating something very basic. https://www.digitalocean.com/community/tutorials/how-to-create-a-web-server-in-node-js-with-the-http-module Once you manage this and understand it, you can create something more complex with multiple routes which handle different request types. For that, you'll probably want Express.js
You can use node js. // try following code const http = require('http'); const requestListener = function (req, res) { res.writeHead(200); res.end('Hello, World!'); } const server = http.createServer(requestListener); server.listen(8080);
Sololearn Inc.
535 Mission Street, Suite 1591Send us a message