The LM Control website. Simple yet efficient.
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
| 12345678910 |
- const express = require('express');
- const app = express();
- const port = 3000;
- const fs = require('fs');
-
-
- app.use(express.static('static'));
-
-
- app.listen(port, () => console.log(`Listening on port ${port}`));
|