bubo-rss/server.js

25 lines
720 B
JavaScript
Raw Permalink Normal View History

// Bubo RSS (on Glitch!)
// init project
2021-11-29 09:35:39 +00:00
import express from "express";
2021-11-29 09:36:02 +00:00
import { URL } from 'url';
2021-11-29 09:35:39 +00:00
const __dirname = new URL('.', import.meta.url).pathname;
const app = express();
// we've started you off with Express,
// but feel free to use whatever libs or frameworks you'd like through `package.json`.
// http://expressjs.com/en/starter/static-files.html
2021-11-29 09:08:47 +00:00
app.use(express.static("public"));
// http://expressjs.com/en/starter/basic-routing.html
app.get("/", function(request, response) {
2021-11-29 09:08:47 +00:00
response.sendFile(__dirname + "/public/index.html");
});
// listen for requests :)
const listener = app.listen(process.env.PORT, function() {
console.log("Your app is listening on port " + listener.address().port);
});