21 lines
382 B
JavaScript
21 lines
382 B
JavaScript
|
'use strict';
|
||
|
|
||
|
// Constants
|
||
|
const PORT = 8080;
|
||
|
const HOST = '0.0.0.0';
|
||
|
|
||
|
const fastify = require('fastify')()
|
||
|
const path = require('path')
|
||
|
|
||
|
fastify.register(require('fastify-static'), {
|
||
|
root: path.join(__dirname),
|
||
|
})
|
||
|
|
||
|
fastify.get('/', function (req, reply) {
|
||
|
return reply.sendFile('index.html');
|
||
|
})
|
||
|
|
||
|
|
||
|
fastify.listen(PORT, HOST);
|
||
|
console.log(`Running on http://${HOST}:${PORT}`);
|