import express from "express";import dotenv from 'dotenv';const app = express();dotenv.config();app.get("/", (req, res) => {const output = `<h1>Do-nothing JS app</h1><h3>SHELL: </h3><h3>ENV_VAR_A: </h3><h3>POD_NAME: </h3>`;res.send(output);});app.listen(8000);