UNPKG

246 BJavaScriptView Raw
1const path = require('path');
2const http = require('http');
3
4const express = require('express');
5
6const PORT = process.env['PORT'] || 8080;
7
8const app = express();
9app.get('*', express.static(__dirname));
10
11http.createServer(app)
12 .listen(PORT);