mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-26 15:05:50 +03: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:3000/ to examine the API spec')
|
||
|
app.listen(3000)
|