thelounge/index.js

23 lines
701 B
JavaScript
Raw Normal View History

2014-08-05 10:32:25 +02:00
#!/usr/bin/env node
"use strict";
2014-08-05 10:32:25 +02: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 12:33:36 +01:00
const pkg = require("./package.json");
if (!require("semver").satisfies(process.version, pkg.engines.node)) {
/* eslint-disable no-console */
console.error("The Lounge requires Node.js " + pkg.engines.node + " (current version: " + process.version + ")");
console.error("Please upgrade Node.js in order to use The Lounge");
console.error("See https://thelounge.chat/docs/install-and-upgrade");
console.error();
process.exit(1);
}
2015-10-01 00:39:57 +02:00
require("./src/command-line");