xmcommon
一个js 通用库, 将一些常用的函数之类的,移到这里方便使用
目录
[TOC]
安装
npm install xmcommon
主要模块说明
- datetimeUtils 日期时间相关的处理工具函数
- utils 一些常用的工具类函数
- HttpCall 全局的CHttpCall对象
- CHttpCall 提供api调用接口的http或https的函数调用类
- watchRequire 监控文化变化的函数
- SimpleCode 一种换位加编码的类
- getLogger 取日志对象的函数
- setGetLogger 设置getLogger函数的函数,用于替换现有的getLogger函数
- codeUtils 一些编码相关的函数,有md5,sha254,base64等函数
- error_common,error_utils 通用错误信息和错误相关函数
- common_ret 通用返回的类
- bitUtils 二进制标志的工具类
- CNYCurrency 中文货币类
版本变更说明
0.1.5 - 0.1.6
- 2020-12-24
- + 增加fileExists判断文件或目录是否存在
- * 修复makedirs存在的bug
- + 增加renameFile方法
0.1.4
- 2020-08-20
- + 增加watchRequire注意事项说明
- * 更新lodash的库
0.1.3
- 2020-06-05
- + 增加utils.randomInteger,随机整数
- + 增加utils.randomScope,随机范围整数
- + 增加utils.randomBetween,随机整数,批定开始和结束值
- * 更新依赖包的版本
0.1.2
- 2019-07-20
- * 优化utils.formatPercentage生成成
- + 增加utils.roundPercentage,将百分比的值精度控制到 0.0001%
0.1.1
- 2019-07-14
- 收到github提示,说依赖的lodash有问题,所以这里升级一下 lodash , 还是高级别的
- We found a potential security vulnerability in one of your dependencies.
0.1.0
- 2019-07-14
- * fixbug 修复utils.mkdirSync在linux下,使用绝对路径会失败的bug
- + 增加utils.mkdirSyncEx,用于返回具体的错误信息
- + 增加utils.formatPercentage,用于生成百分比字符串
0.0.22
- 2019-07-04
- * 修改index.d.ts,增加允许默认值参数定义
0.0.21
- 2019-06-28
- * fixbug: 不能正确识别增加CNYCurrency类型的对象
- + 增加CNYCurrency.isCurrency函数,判断是否是CNYCurrency类型
- + datetimeUtils增加比较日期的时间差函数
0.0.20
0.0.17
- 2019-06-24
- * 增加CNYCurrency构造函数默认值0, 如果传入null或undefined也视为0, 测试CNYCurrency 1-100000000之间的值
- + CNYCurrency 增加assign赋值函数
- * 将index.d.ts中的utils.JsonParse的定义返回值由{}改为any
0.0.16
- 2019-06-03
- * 修复生成大写的bug,主要是百==>佰 千==>仟
let m = [];
let c = new CNYCurrency(-12345);
m.push(c);
m.push(c.add(109999));
m.push(c.sub(10));
m.push(c.div(0.01));
m.push(c.mul(10));
m.push(c.mul(0.01));
let tt = new CNYCurrency(0);
tt.selfAdd(2805307.04);
tt.selfAdd(4323515.28);
tt.selfAdd(2805307.04);
tt.selfAdd(3281107.13);
m.push(tt);
for(let mm of m) {
console.log(mm.value, mm.intValue, mm.toString(), mm.format(true, true), mm.Chinese());
}
0.0.15
- 2019-06-01
- + 增加CNYCurrency 中文货币类
0.0.14
- 2019-04-20
- * 优化index.d.ts部分注释, 将object变化any, 将[string]变化string[] 这样在typescript的可以正常使用
- + codeUtils增加MD5FromArgs
- + CHttpCall 增加 asyncJsonPost 和 asyncJsonGet方法
0.0.13
- 2019-03-28
- * 优化index.d.ts部分注释
- + utils增加options对参数解析的方法 用于node启动后,传入参数的接收处理
let {utils} = require("../lib/utils");
let v = ["../tt", "--env", "aaaaa", "--version", "1.0.0", "aaaaa", "--flag", "true", "-aaaaa"];
let k = utils.options(v);
console.log(JSON.stringify(k, null, 2));
运行结果
{
"_": [
"../tt",
"aaaaa",
"-aaaaa"
],
"args": {
"env": "aaaaa",
"version": "1.0.0",
"flag": "true"
}
}
0.0.12
- 2019-02-18
- + 修改readme.md说明
0.0.10
- 2019-02-18
- + 增加index.d.ts,使用的时候,可以在vscode有代码提示说明了
0.0.9
- 2019-02-10
- + datetimeUtils 增加diffLocalDays,CalcLocalDaysByUTC,CalcLocalDaysByDate等函数
- + datetimeUtils 修改getNow()的描述错误
- + datetimeUtils 增加getLocalNow()和getLocalNowSecond()
0.0.8
- 2018-12-21
- + datetimeUtils 补全上次未能提交的函数
0.0.7
- 2018-12-12
- + datetimeUtils 增加了ToLocalTime,ToUTCTime,getTodayZeroTime,isSameDay等函数
0.0.6
- 2018-11-01
- + 增加了bitUtil对整数位处理函数,可以用于标志位处理
- + 增加utils中的ToInteger, ToFloat, JsonParse和mkdirsSync等几个函数
0.0.5
- 2018-10-31
- * 更新依赖包 lodash 4.17.10 -->4.17.11
0.0.4
let comm = require("xmcommon");
let log = comm.getLogger(__filename);
log.info("hello world");
0.0.3