Holana/host.js
2023-04-29 21:59:08 +12:00

7 lines
No EOL
269 B
JavaScript

// const express = require('express');
// const app = express();
// const port = 3000;
// app.listen(port, () => console.log(`Bot running on http://127.0.0.1:${port}`));
const http = require("http");
http.createServer((_, res) => res.end("Holana online")).listen(8080)