mirror of
https://github.com/nasa/openmct.git
synced 2024-12-18 20:57:53 +00:00
47b6d19de8
* Bump webpack-dev-middleware from 3.7.3 to 5.3.1 Bumps [webpack-dev-middleware](https://github.com/webpack/webpack-dev-middleware) from 3.7.3 to 5.3.1. - [Release notes](https://github.com/webpack/webpack-dev-middleware/releases) - [Changelog](https://github.com/webpack/webpack-dev-middleware/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack/webpack-dev-middleware/compare/v3.7.3...v5.3.1) --- updated-dependencies: - dependency-name: webpack-dev-middleware dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Fixed config to support updated webpack-dev-middleware Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jamie V <jamie.j.vigliotta@nasa.gov> Co-authored-by: Andrew Henry <akhenry@gmail.com>
85 lines
2.2 KiB
JavaScript
85 lines
2.2 KiB
JavaScript
/*global process*/
|
|
|
|
/**
|
|
* Usage:
|
|
*
|
|
* npm install minimist express
|
|
* node app.js [options]
|
|
*/
|
|
|
|
const options = require('minimist')(process.argv.slice(2));
|
|
const express = require('express');
|
|
const app = express();
|
|
const fs = require('fs');
|
|
const request = require('request');
|
|
|
|
// Defaults
|
|
options.port = options.port || options.p || 8080;
|
|
options.host = options.host || 'localhost';
|
|
options.directory = options.directory || options.D || '.';
|
|
|
|
// Show command line options
|
|
if (options.help || options.h) {
|
|
console.log("\nUsage: node app.js [options]\n");
|
|
console.log("Options:");
|
|
console.log(" --help, -h Show this message.");
|
|
console.log(" --port, -p <number> Specify port.");
|
|
console.log(" --directory, -D <bundle> Serve files from specified directory.");
|
|
console.log("");
|
|
process.exit(0);
|
|
}
|
|
|
|
app.disable('x-powered-by');
|
|
|
|
app.use('/proxyUrl', function proxyRequest(req, res, next) {
|
|
console.log('Proxying request to: ', req.query.url);
|
|
req.pipe(request({
|
|
url: req.query.url,
|
|
strictSSL: false
|
|
}).on('error', next)).pipe(res);
|
|
});
|
|
|
|
class WatchRunPlugin {
|
|
apply(compiler) {
|
|
compiler.hooks.emit.tapAsync('WatchRunPlugin', (compilation, callback) => {
|
|
console.log('Begin compile at ' + new Date());
|
|
callback();
|
|
});
|
|
}
|
|
}
|
|
|
|
const webpack = require('webpack');
|
|
const webpackConfig = require('./webpack.dev.js');
|
|
webpackConfig.plugins.push(new webpack.HotModuleReplacementPlugin());
|
|
webpackConfig.plugins.push(new WatchRunPlugin());
|
|
|
|
webpackConfig.entry.openmct = [
|
|
'webpack-hot-middleware/client?reload=true',
|
|
webpackConfig.entry.openmct
|
|
];
|
|
|
|
const compiler = webpack(webpackConfig);
|
|
|
|
app.use(require('webpack-dev-middleware')(
|
|
compiler,
|
|
{
|
|
publicPath: '/dist',
|
|
stats: 'errors-warnings'
|
|
}
|
|
));
|
|
|
|
app.use(require('webpack-hot-middleware')(
|
|
compiler,
|
|
{}
|
|
));
|
|
|
|
// Expose index.html for development users.
|
|
app.get('/', function (req, res) {
|
|
fs.createReadStream('index.html').pipe(res);
|
|
});
|
|
|
|
// Finally, open the HTTP server and log the instance to the console
|
|
app.listen(options.port, options.host, function () {
|
|
console.log('Open MCT application running at %s:%s', options.host, options.port);
|
|
});
|