Skip to content

Instantly share code, notes, and snippets.

@mozkurt27
Last active June 16, 2016 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mozkurt27/0a28f81abfac5140e89dba7e21a6f3a5 to your computer and use it in GitHub Desktop.
Save mozkurt27/0a28f81abfac5140e89dba7e21a6f3a5 to your computer and use it in GitHub Desktop.
var http = require('http');
var port='3000';
var server=http.createServer(function(request,response){
response.end("Merhaba Dunya");
});
server.listen(port);
console.log('Server port ' + port);
@mozkurt27
Copy link
Author

node ilk örnek

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment