+ 3
How can i make a server
13 Answers
+ 4
You need to tag a relevant language in your thread tag, it currently says '0', which does not help deduce which language is relevant to your question topic (build a server app).
+ 4
XMAP and WAMP both are used as a server
+ 3
Do you mean a Webserver?
+ 3
With the Programm "XAMPP"
+ 3
In which language?
+ 2
Add relevant tag before posting any post
+ 2
In Node js
var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  res.end('Hello World!');
}).listen(8080)
+ 2
WAMP
+ 1
Its for Windows,Linux and Mac OS
0
Yes pls
0
Ok
0
Thanks
0
take a server. you make it for 5 mins and you have a server.. ; )