AI-WebTV / src /index.mts
jbilcke-hf's picture
jbilcke-hf HF staff
initial commit
e4eeb10
raw
history blame
No virus
179 Bytes
import express from 'express'
const app = express()
const port = 7860
app.use(express.static('public'))
app.listen(port, () => { console.log(`Open http://localhost:${port}`) })