Lerna脚手架搭建(九):root账号启动检查和自动降级功能开发

本文最后更新于:2024年12月10日 下午

一、安装 root-check 库 👈

  1. xuven-cli-dev 目录下执行 lerna add root-check core/cli/ 安装 root-check 库;
  2. 编辑 core/cli/lib/index.js,添加 checkRoot 方法,内容如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
'use strict';

module.exports = core;

const semver = require('semver');
const colors = require('colors/safe');
const log = require('@xuven-cli-dev/log');

const constant = require('./const');
const pkg = require('../package.json');

function core() {
try {
checkPkgVersion();
checkNodeVersion();
checkRoot();
} catch (e) {
log.error(e.message);
}
}

function checkRoot() {
const rootCheck = require('root-check');
console.log(process.geteuid());
rootCheck();
console.log(process.geteuid());
}

function checkNodeVersion() {
const currentVersion = process.version;
const lowestVersion = constant.LOWEST_NODE_VERSION;
if (!semver.gte(currentVersion, lowestVersion)) {
throw new Error(colors.red(`xuven-cli-dev 需要安装 v${lowestVersion} 以上版本的 Node.js`));
}
}

function checkPkgVersion() {
log.info('cli', pkg.version);
}
  1. 执行 xuven-cli-dev 命令,查看输出,可看到,在执行 rootCheck() 前,当前用户是 root,执行后降级了:
  2. 删除 console.log() 语句。

Lerna脚手架搭建(九):root账号启动检查和自动降级功能开发
https://blog.xuven.xyz/post/CheckRoot/
作者
Xuven Li
发布于
2022年4月15日
许可协议