You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
253 B

3 years ago
3 years ago
3 years ago
  1. const express = require("express");
  2. const app = express();
  3. app.get("/", (req, res) => {
  4. res.status(200).json("Hello Mr Jenkins");
  5. });
  6. module.exports = app.listen(process.env.PORT || 4000, () =>
  7. console.log(`Running on http://localhost:4000`)
  8. );