@andatoshiki/fuki
Version:
🐳 A lovely self-hosted yet serverless link shortener service via CloudFlare Workers!
25 lines (21 loc) • 642 B
JavaScript
var http = require('http')
var fs = require('fs')
var server = http.createServer(function (req, resp) {
// Print the name of the file for which request is made.
console.log('✅ Request for demo file received.')
fs.readFile('./src/components/index.html', function (error, data) {
if (error) {
resp.writeHead(404)
resp.write('❌ Contents you are looking for-not found')
resp.end()
} else {
resp.writeHead(200, {
'Content-Type': 'text/html',
})
resp.write(data.toString())
resp.end()
}
})
})
server.listen(8081, 'localhost')
console.log('❤️' + ' ' + 'Lovely server running at http://localhost:8081/')