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/server/app.js

9 lines
192 B
JavaScript

var express = require('express');
var app = module.exports = express();
app.get('/', function (req, res) {
res.send('Hello World!');
});
app.use(express.static(__dirname + '/../static'));