Spaces:
Sleeping
Sleeping
File size: 325 Bytes
b10f962 |
1 2 3 4 5 6 7 8 9 10 |
import express from 'express'
const app = express()
const port = 7860
app.use(express.static('public'))
app.get('/', async (req, res) => {
res.write(`<html><head><title>Hello.</title></head><body><div>Hello world</div></body></html>`)
res.end()
})
app.listen(port, () => { console.log(`Open http://localhost:${port}`) }) |