python local server command
On Ubuntu go to Commands and hit these two commands->
cd folderName
python3 -m http.server 8080
python local server command
On Ubuntu go to Commands and hit these two commands->
cd folderName
python3 -m http.server 8080
simple http server
npm install --global http-server
how to create a server in node 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
open local hosted server
// Open a brower and enter the following into the URL:
http://localhost/
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us