app-server.js 205 B

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