UNPKG

@finde/nofy

Version:

Simple Framework for Simple Things

11 lines (8 loc) 262 B
const path = require('path'); module.exports = function Pages(nofy, { express }, cb) { express.get('/welcome', (req, res) => { const welcomeHTML = path.join(__dirname, '../static/welcome.html'); res.sendFile(welcomeHTML); }); return cb('OK'); };