Skip to content

Instantly share code, notes, and snippets.

View jamesr2323's full-sized avatar

James Rees jamesr2323

  • ChangeLab
  • London
View GitHub Profile
const express = require('express');
const fs = require('fs-extra');
const path = require('path');
const app = express();
const port = 3000;
app.use(express.static('./'));
app.get('/', async (req, res) => {