mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-16 02:18:28 -07:00
9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
const express = require('express')
|
|
|
|
const app = express()
|
|
|
|
app.use(express.static(__dirname))
|
|
|
|
console.log('Open http://localhost:4000/ to examine the API spec')
|
|
app.listen(4000)
|