Used.js 是一个轻量级小巧的可运行在浏览器中的 JavaScript 函数库,除个别外大部分的使用方式与 Node.js API 保持一致。
- 更轻量小巧
- 可按需载入
- 丰富的API
- 提高开发效率
- 全浏览器兼容
$ yarn
$ npm run build
- NPM
$ npm i usedjs --save
文档说明以NPM的方式来使用进行
import usedjs from 'usedjs' // 全引用
import querystring from 'usedjs/lib/querystring' // 仅引用querystring模块
大部分的模块主要针对 lodash.js
未提供但又常用到的一些函数并且支持按需载入, (与热门库使用体验一致) 简单易用无学习成本。
若有不当之处,请指出;
用于解析字符串URL,如:https://github.com/icepy/used?id=1234#1
const result = parseURLString('https://github.com/icepy/used?id=1234#1')
{
url: 'https://github.com/icepy/used?id=1234#1',
scheme: 'https',
slash: '//',
host: 'github.com',
port: undefined,
path: 'icepy/used',
query: 'id=1234',
hash: '1',
}
处理查询字符串解析和反序列化成字符串,所有的 value 支持编码解码
- parse
使用parse
将一个符合标准的URL查询字符串,序列化成JSON对象
const search = 'id=1234&name=你好&name=你好';
const _wu = querystring.parse(search)
console.log(_wu)
querystring.parse: { id: '1234', name: [ '你好', '你好' ] }
- stringify
使用stringify
将一组JSON对象,反序列化成URL查询字符串
const query = {
id: 1234,
name: ['你好', '你好']
}
const wu = querystring.stringify(query)
console.log(wu)
querystring.stringify: id=1234&name=你好&name=你好
支持解析和 format
一个符合 URL 规则的 url
- parse
将一个 URL 的查询字符串序列化成 JSON 对象,并且支持获取特定 key 的 value。
const websiteUrl = 'https://github.com/icepy?id=1234&name=你好&name=你好吧'
const _query = url.parse(websiteUrl)
console.log(_query)
const id = url.parse(websiteUrl, 'id')
console.log(id)
url.parse: { id: '1234', name: [ '你好', '你好吧' ] }
url.parse id: 1234
- format
将一组 JSON 对象反序列化成 URL 字符串
const _websiteUrl = url.format('https://github.com/icepy',{
id: 1234,
name: '你好'
})
console.log(_websiteUrl)
url.format: https://github.com/icepy?id=1234&name=你好
良好的日志系统可以在排错方面给予效率,loggers
提供了良好的区分以及格式化输出。
logger
函数LoggerType
常量定义了LOG ERROR WARNING INFO DIR TABLE 六个等级
const loggers = require('../lib/index');
const logger = loggers.default;
const LoggerType = loggers.LoggerType;
logger('default log');
logger({ default: 'log'});
logger(['default', 'log']);
logger([{ default: 'log', name: 'icepy'}], LoggerType.TABLE);
loggers.dir(document.querySelector('body'));
loggers.info('default log');
loggers.warning('default log');
loggers.error('default log');
loggers.table(['default', 'log']);
loggers.table({ default: 'log', name: 'icepy'});
loggers.table([{ default: 'log', name: 'icepy'}], ['name']);
用于程序本身判断自己所运行的环境,主要支持 Browser
,Node.js
,Weex
,全部的常量返回一个 Boolean
。
Browser
是否在浏览器中Weex
是否在Weex中NodeJS
是否在Node.js中IE
是否是IEIE9
是否是IE9Edge
是否是EdgeAndroid
是否是Android(浏览器或Weex)iOS
是否是iOS(浏览器或Weex)Chrome
是否是Chrome
{
Browser: false,
Weex: false,
weexPlatform: false,
IE: false,
IE9: false,
Edge: false,
Android: false,
iOS: false,
Chrome: false,
NodeJS: true
}
创建一个cookie应用于整个网站:
cookie.set('name', 'icepy')
创建一个从现在起7天过期的cookie应用于整个网站:
cookie.set('name', 'icepy', { expires:7 })
获取一个key=name的cookie:
cookie.get('name')
获取所有的cookie:
cookie.get()
删除一个key=name的cookie:
cookie.remove('name')
⚠️ 注意:删除不存在的cookie不会引发任何异常,也不会有返回值,在删除cookie时最正确的处理方式是将设置cookie时完整的路径和域属性都传递进来。
创建一个 uuid:
const uuid = createUUID();
console.log('createUUID: ', uuid);
createUUID: 49bafb3b-4b3f-0aec-66fc-1b13479720a4
版本对比 x.y.z ,旧版本和新版本比对的逻辑是 大于或等于为 true。
const cv = compareVersion('1.0.0', '1.0.1');
console.log('oldVersion: 1.0.0 newVersion: 1.0.1', cv);
const cv1 = compareVersion('1.0.0', '1.0.0');
console.log('oldVersion: 1.0.0 newVersion: 1.0.0', cv1);
const cv2 = compareVersion('1.0.0', '0.0.9');
console.log('oldVersion: 1.0.0 newVersion: 0.0.9', cv2);
oldVersion: 1.0.0 newVersion: 1.0.1 true
oldVersion: 1.0.0 newVersion: 1.0.0 true
oldVersion: 1.0.0 newVersion: 0.0.9 false