The LM Control website. Simple yet efficient.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

index.js 217B

12345678910
  1. const express = require('express');
  2. const app = express();
  3. const port = 3000;
  4. const fs = require('fs');
  5. app.use(express.static('static'));
  6. app.listen(port, () => console.log(`Listening on port ${port}`));