hardlounge/index.js

39 lines
950 B
JavaScript
Raw Permalink Normal View History

2014-08-05 01:32:25 -07:00
#!/usr/bin/env node
"use strict";
2014-08-05 01:32:25 -07:00
process.chdir(__dirname);
// Perform node version check before loading any other files or modules
// Doing this check as soon as possible allows us to
// avoid ES6 parser errors or other issues
2018-01-11 03:33:36 -08:00
const pkg = require("./package.json");
if (!require("semver").satisfies(process.version, pkg.engines.node)) {
/* eslint-disable no-console */
2019-07-17 02:33:59 -07:00
console.error(
2023-10-09 03:28:14 -07:00
"Hard Lounge requires Node.js " +
2019-07-17 02:33:59 -07:00
pkg.engines.node +
" (current version: " +
process.version +
")"
);
2023-10-09 03:28:14 -07:00
console.error("Please upgrade Node.js in order to use Hard Lounge");
console.error("See https://thelounge.chat/docs/install-and-upgrade");
console.error();
process.exit(1);
}
const fs = require("fs");
if (fs.existsSync("./dist/server/index.js")) {
require("./dist/server/index.js");
} else {
console.error(
"Files in ./dist/server/ not found. Please run `yarn build` before trying to run `node index.js`."
);
process.exit(1);
}