mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
const path = require('path');
|
|
const express = require('express');
|
|
const reload = require('reload');
|
|
const app = express();
|
|
|
|
const BUILDDIR = process.argv[2] || './build';
|
|
const PORT = process.argv[3] || 3000;
|
|
|
|
//ROUTE - index.htm
|
|
app.get('/', (req, res) => {
|
|
res.sendFile(path.join(__dirname, BUILDDIR, 'index.htm'), {}, function (err) {
|
|
if(err){
|
|
console.log('error sending file', err);
|
|
} else {
|
|
console.log("Server: Successfully served index.html");
|
|
|
|
/*setTimeout(()=>{
|
|
console.log('closing server');
|
|
res.app.server.close();
|
|
process.exit();
|
|
},1000*10); */
|
|
}
|
|
});
|
|
});
|
|
|
|
// Better to show landing page rather than 404 on editor page reload
|
|
app.get('/pixel-editor/app', (req, res) => {
|
|
res.redirect('/');
|
|
})
|
|
|
|
//ROUTE - other files
|
|
app.use(express.static(path.join(__dirname, BUILDDIR)));
|
|
|
|
reload(app).then(() => {
|
|
//start server
|
|
app.server = app.listen(3000, function () {
|
|
console.log('Web server listening on port ' + PORT)
|
|
})
|
|
});
|