sharkey/src/misc/environmentInfo.ts

18 lines
506 B
TypeScript
Raw Normal View History

2016-12-31 03:35:19 +09:00
import Logger from './logger';
2018-07-14 22:10:27 +09:00
import isRoot = require('is-root');
2016-12-31 03:35:19 +09:00
2017-01-03 04:39:44 +09:00
export default class {
2017-05-24 20:50:17 +09:00
public static show(): void {
2016-12-31 03:35:19 +09:00
const env = process.env.NODE_ENV;
2017-05-24 20:50:17 +09:00
const logger = new Logger('Env');
2016-12-31 03:35:19 +09:00
logger.info(typeof env == 'undefined' ? 'NODE_ENV is not set' : `NODE_ENV: ${env}`);
2017-05-24 20:50:17 +09:00
2016-12-31 03:35:19 +09:00
if (env !== 'production') {
logger.warn('The environment is not in production mode');
logger.warn('Do not use for production purpose');
}
2018-07-14 22:10:27 +09:00
logger.info(`You ${isRoot() ? '' : 'do not '}have root privileges`);
2016-12-31 03:35:19 +09:00
}
}