Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
jbilcke-hf/AI-WebTV
jsaplication
/
ia-tv
like
0
Runtime error
App
Files
Files
Community
1efc350
ia-tv
/
src
/
index.mts
jbilcke-hf
HF staff
initial commit
e4eeb10
over 1 year ago
raw
Copy download link
history
blame
Safe
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}
`
) })