The LM Control website. Simple yet efficient.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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}`));