Trying deploy

This commit is contained in:
saqut 2024-01-28 03:15:50 +03:00
parent 14e82f5cc7
commit 72aa78ac17
1 changed files with 11 additions and 0 deletions

11
server.js Normal file
View File

@ -0,0 +1,11 @@
const express = require("express");
const app = express();
app.get("/",function(request, response){
response.end("Merhaba")
})
app.listen(6480,'127.0.0.1');