app.ts 298 B

123456789101112131415
  1. import express from "express";
  2. const app = express();
  3. app.get("/", (req, res) => {
  4. const lines = [
  5. `time:${Math.round(new Date().getTime() / 1000)}`,
  6. `tz:-21627`
  7. ]
  8. res.send(lines.join('\n'));
  9. });
  10. app.listen(3000, "0.0.0.0", () => {});
  11. console.log(`Server started on port 3000`);