2020-02-04 15:07:55 +00:00
|
|
|
// 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;
|
|
|
|
|
2020-02-04 15:07:55 +00:00
|
|
|
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"));
|
2020-02-04 15:07:55 +00:00
|
|
|
|
|
|
|
// 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");
|
2020-02-04 15:07:55 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// listen for requests :)
|
|
|
|
const listener = app.listen(process.env.PORT, function() {
|
|
|
|
console.log("Your app is listening on port " + listener.address().port);
|
|
|
|
});
|