app-server.js 205 B

123456
  1. const express = require('express');
  2. const app = express();
  3. const port = 2612;
  4. app.use(express.static('webpack'));
  5. app.listen(port, () => console.log(`Example app listening at http://localhost:${port}`));