Skip to content

Instantly share code, notes, and snippets.

View kentechfox's full-sized avatar

Khanh Nguyen kentechfox

  • TechFox International Technology Joint Stock Stock Company
  • Hanoi
View GitHub Profile
const express = require("express");
const app = express();
const { quotes } = require("./data");
const { getRandomElement } = require("./utils");
const PORT = process.env.PORT || 4001;
app.use(express.static("public"));