Node Cli 基础方法库
$ npm install @irim/cli-base --save
import { consts, utils, files } from '@irim/cli-base';
const { print } = utils;
print('debug', 'hello', 'world');
属性名 | 描述 | 类型 |
---|---|---|
HOMEPATH | 用户 home 目录 | string |
IS_WIN | 是否是 windows 系统 | boolean |
方法名 | 描述 | 参数定义 | 返回值 |
---|---|---|---|
progressBar | 返回一个进度条 string | recent: number, total?: number, label?: string |
string |
带颜色级别的 console.log | `type: 'debug' | 'info' | |
printJSON | 打印单层的 JSON | json: Record<string, BaseType> |
void |
parseProperties | 解析 .properties 文件,返回一个 JSON | file: string |
Promise<Record<string, any>> |
templateRender | 最简单的模板渲染 | tpl: string, data: Record<string, any> = {} |
string |
confirm | node 控制台二次确认 | message: string, defaultValue = false |
Promise<boolean> |
select | node 控制台用户选择 | message: string, options: SelectOptions<T>[], defaultValue: T |
Promise<T> |
multi | node 控制台用户多选 | message: string, options: SelectOptions<T>[], defaultValue: T[] |
Promise<T[]> |
input | node 控制台用户输入 | message: string, defaultValue?: string, validator = (v: string) => any |
Promise<string> |
password | node 控制台密码输入 | message: string, defaultValue?: string, validator = (v: string) => any |
Promise<string> |
holding | node 控制台进入等待状态,按回车继续 | tips = '按回车继续...' |
Promise<boolean> |
exec | 执行 shell 命令,返回执行结果 | command: string, cwd = process.cwd() |
Promise<any> |
execSync | 同步执行 shell 命令 | command: string, cwd = process.cwd() |
SpawnSyncReturns |
其中 input
和 password
方法的第 3 个参数是校验方法,入参是输入的值,如果返回 false 或 Error(支持 Promise),则表示校验失败,例如:
utils.input('请输入用户名', null, async (value) => {
// 直接校验
return value === 'zhangsan';
// 返回自定义错误文案
return value === 'zhangsan' ? true : new Error('校验失败!');
// 远程校验
return await request(`api/validate?name=${value}`);
});
/**
* 基本类型,不算 object、null、undefined
*/
export type BaseType = string | number | boolean | symbol;
方法名 | 描述 | 参数定义 | 返回值 |
---|---|---|---|
fileIterator | 遍历目录文件,执行 callback | 见下文 | Promise<any> |
dirSyncIterator | 遍历目录文件,同步到目标目录,并对每一个文件执行 callback | 见下文 | Promise<any> |
getFileCount | 统计目录中的文件数量 | src: string, exclude?: RegExp |
Promise<number> |
copyDir | 逐个复制目录中的文件 | options: OptionShape |
Promise<any> |
clearDir | 清空目录(有二次确认) | options: ClearOptions |
Promise<boolean> |
findInFolder | 从目录中查找内容符合条件的文件 | src: string, callback: (filePath: string, content: string) => boolean, options: SearchOptions |
Promise<SearchResult[] |
// 遍历文件目录,执行 callback
export async function fileIterator(
/** 目录路径 */
src: string,
/** 执行到文件时的回调,如果返回 false 或 async false,则遍历中止 */
fileCallback: (filePath: string, fileRelativePath: string) => any,
/** 执行到目录时的回调 */
dirCallback?: (dirRelativePath: string) => any,
/** 忽略的文件 */
): Promise<any>;
// 遍历文件目录,同步到目标目录,并对每一个文件执行 callback
export async function dirSyncIterator(
/** 源文件目录 */
source: string,
/** 目标目录 */
target: string,
/** 执行到文件时的回调 */
callback: (sourceFile: string, targetFile: string) => any,
/** 忽略的文件 */
exclude?: RegExp
): Promise<any>
// copyDir 方法的参数
export interface OptionShape {
/** 文件来源目录 */
src: string;
/** 目标目录 */
dist: string;
/** 文件内容替换规则 */
replacer?: { holder: RegExp; value: string }[];
/** 忽略的文件 */
exclude?: RegExp;
/** 只读文件(不读取&替换的文件) */
readonlyFile?: RegExp;
/** 文件名替换方法 */
fileNameTransfer?: (name: string) => string;
/** 文件内容格式化方法 */
contentFormatter?: (content: string, src: string) => Promise<string>;
}
// clearDir 方法的参数
export interface ClearOptions {
/** 要清除的目录 */
src: string;
/** 是否有二次确认 */
confirm?: boolean;
/** 二次确认文案 */
confirmText?: string;
/** 忽略的文件 */
exclude?: RegExp;
}
// findInFolder 方法的参数
export interface SearchOptions {
/** 是否找到所有文件,默认 false,即找到第 1 个就返回 */
all?: boolean;
/** 如果指定了 include,则只处理匹配的文件 */
include?: RegExp;
/** 匹配规则的文件跳过 */
exclude?: RegExp;
/** 文件大小限制(byte),超过大小的文件不遍历 */
limit?: number;
/** 读取文件的编码,默认是 utf-8 */
encoding?: BufferEncoding;
}
export interface SearchResult {
filePath: string;
fileRelativePath: string;
fileSize: number;
}
- 1.0.0 发布 1.0 版本,整合并优化 已有能力
- 1.0.4 优化文档,迁移代码仓库
- 1.1.0 去掉
BaseAction
,简化架构 - 1.1.7 增强
utils.print
方法,可以将日志输出到本地 - 1.1.9 新增
utils.multi
方法,可以用于多选 - 1.1.11 优化
files.copyDir
方法,修改默认的配置项 - 1.1.14 新增
utils.promiseTimer
方法,可以将 promise 方法封装成带超时机制的方法 - 1.2.0 透出
fs-extra
以及 d.ts 文件,方便被引用
BSD-3-Clause License