Facebook
From 556187872546258996, 4 Years ago, written in JavaScript.
This paste is a reply to Re: 7/24 Saat Uptime from ByMayFe - go back
Embed
Viewing differences between Re: 7/24 Saat Uptime and Re: Re: 7/24 Saat Uptime
const express = require("express");
const http = require("http");
const app = express();

app.get("/", (request, response) => {
  //console.log(Date.now() + " BOT Aktif.");
  //response.sendStatus(200);
});
app.listen(process.env.PORT);
setInterval(() => {
  http.get(`http://${process.env.PROJECT_DOMAIN}.glitch.me`);
}, 1000 * 60 * 3);