mirror of
https://github.com/georgemandis/bubo-rss.git
synced 2024-11-12 23:14:22 +00:00
22 lines
639 B
JavaScript
22 lines
639 B
JavaScript
|
// Bubo RSS (on Glitch!)
|
||
|
|
||
|
// init project
|
||
|
const express = require("express");
|
||
|
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("output"));
|
||
|
|
||
|
// http://expressjs.com/en/starter/basic-routing.html
|
||
|
app.get("/", function(request, response) {
|
||
|
response.sendFile(__dirname + "/output/index.html");
|
||
|
});
|
||
|
|
||
|
// listen for requests :)
|
||
|
const listener = app.listen(process.env.PORT, function() {
|
||
|
console.log("Your app is listening on port " + listener.address().port);
|
||
|
});
|