Files
simple-mail-cleaner/backend/node_modules/@fastify/send/examples/simple.js
2026-01-22 15:49:12 +01:00

15 lines
281 B
JavaScript

'use strict'
const http = require('http')
const send = require('..')
const path = require('path')
const indexPath = path.join(__dirname, 'index.html')
const server = http.createServer(function onRequest (req, res) {
send(req, indexPath)
.pipe(res)
})
server.listen(3000)