webgl/index.js

13 lines
264 B
JavaScript
Raw Permalink Normal View History

2023-01-18 14:30:41 +00:00
const express = require('express')
const app = express()
const port = 8080
app.use(express.static('public'))
app.get('/', (req, res) => {
res.sendFile('index.html')
})
app.listen(port, () => {
console.log(`App listening on port http://127.0.0.1:${port}`)
})