You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
filepizza/lib/middleware/javascript.js

8 lines
170 B
JavaScript

var path = require('path')
var CLIENT_MODULE_PATH = path.resolve(__dirname, '../client.js')
module.exports = function (req, res) {
res.sendFile(CLIENT_MODULE_PATH)
}