Skip to content

Instantly share code, notes, and snippets.

View Jaggler3's full-sized avatar
🛠️

Martin D. Jaggler3

🛠️
View GitHub Profile
@termtype:m100
cont
-border: line
-padding-top: 3
-padding-bottom: 3
-width: 100pc
text:This is an example .term file loaded from the web.
-align:center
end
end
@Jaggler3
Jaggler3 / app.js
Created April 4, 2019 13:57
Express Static Folder
const express = require("express");
const app = express();
app.use(express.static('www'));
app.listen(3000, () => {
console.log("Listening on port 3000");
});