UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge

11 lines (8 loc) 243 B
'use strict' const path = require('path') const fastify = require('fastify')({ logger: { level: 'trace' } }) fastify .register(require('../'), { root: path.join(__dirname, '/public') }) .listen(3000, err => { if (err) throw err })