The LM Control website. Simple yet efficient.
Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
| 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}`));
|