mirror of
https://github.com/georgemandis/bubo-rss.git
synced 2024-11-09 21:44:23 +00:00
25 lines
720 B
JavaScript
25 lines
720 B
JavaScript
// Bubo RSS (on Glitch!)
|
|
|
|
// init project
|
|
import express from "express";
|
|
import { URL } from 'url';
|
|
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
|
|
app.use(express.static("public"));
|
|
|
|
// http://expressjs.com/en/starter/basic-routing.html
|
|
app.get("/", function(request, response) {
|
|
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);
|
|
});
|