Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
jbilcke-hf
/
AI-WebTV
like
503
Running
App
Files
Files
Community
14
b5e7079
AI-WebTV
/
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}
`
) })