mirror of
https://github.com/TeamPGM/Web-Console.git
synced 2024-11-21 14:48:16 +00:00
7 lines
154 B
JavaScript
7 lines
154 B
JavaScript
const express = require('express')
|
|
const app = express()
|
|
|
|
app.use(express.static('dist')).listen(8080)
|
|
|
|
console.log('server open: http://localhost:8080')
|