mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 13:05:36 +03:00
8 lines
179 B
JavaScript
8 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)
|