npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dj-jstools

v1.2.3

Published

前端业务代码工具库

Downloads

5

Readme

jstool

LICENSE MIT

前端业务代码工具库

目的:高效率完成前端业务代码

业务开发过程中,会经常用到日期格式化url参数转对象浏览器类型判断节流函数等常用函数,为避免不同项目多次复制粘贴的麻烦,这里统一封装,并发布到npm,以提高开发效率。如果你也有常用的代码,欢迎为本项目提交pr。

安装使用

  1. 直接下载min目录下的jstools.min.js使用,支持UMD通用模块规范
  2. 使用npm安装

浏览器:

  <script src="jstools.min.js"></script>
  <script>
      var OS = jstools.getOS()
  </script>

npm:

$ npm install --save-dev dj-jstools

webpack、RequireJS、SeaJS等

// 完整引入
const jstool = require('dj-jstools')
const OS = jstool.getOS()

推荐使用方法

你真的不需要完整引入所有函数,所以只引入需要使用的方法即可。

// 只引入部分方法('dj-jstools/static/<方法名>')
const getOS = require('dj-jstools/static/getOS')
const OS = getOS()

项目构建

编译ES6转ES5

npm run jsBabel

重新编译脚本

npm run build

测试代码

npm run test

API文档

Heikuai

  [heikuai][heikuai]  嘿快常用功能

    heikuai.getUserAccount() //获取当前用户
    heikuai.isApp() //是否在嘿快app内

Array

  arrayEqual  判断两个数组是否相等

Class

  classApi  className的操作api

    classApi.isElement(el) //是否元素节点
    classApi.hasClass(el,cls) //是否是否存在class
    classApi.addClass(el,cls) // 添加class
    classApi.removeClass(el,cls) // 移除class
    classApi.toggleClass(el,cls) // 交替class

animationFrame

  animationFrame  AnimationFrame简单兼容hack

collections

  shuffle  数组打乱随机乱序

Cookie

  cookieApi  cookie存储(适用和服务端交互)

    cookieApi.set(name, value[, end[, path[, domain[, secure]]]])添加Cookie
    cookieApi.get(name) 根据name读取Cookie
    cookieApi.has(name) 根据name验证是否存在
    cookieApi.remove(name)根据name删除Cookie
    cookieApi.keys() 获取cookieKeys列表

Device

  getExplore  获取浏览器类型和版本号

  getOS  获取操作系统类型

  isWeixin  是否微信内置浏览器

  getType  是否手机

  mobileType  手机类型

Dom

  scrollApi  scroll滚动方法

  getScrollTop  获取滚动条距顶部的距离

  offset  获取一个元素的距离文档(document)的位置,类似jQ中的offset()

  scrollTo  在${duration}时间内,滚动条平滑滚动到${to}指定位置

  setScrollTop  设置滚动条距顶部的距离

  windowResize  H5软键盘缩回、弹起回调

prefixStyle

  prefixStyle  prefixStyle css针对不同浏览器加前缀

Function

  debounce  函数防抖

  throttle  函数节流

Keycode

  getKeyName  根据keycode获得键名

Object

  deepClone  深拷贝,支持常见类型

  isEmptyObject  判断Object是否为空

  isEmpty  判断变量是否为空

Random

  randomColor   随机生成颜色

  randomNum  生成指定范围随机数

Regexp

  isEmail  判断是否为邮箱地址

  isIdCard  判断是否为身份证号

  isPhoneNum  判断是否为手机号

  isUrl  判断是否为URL地址

  priceSubstr  千,万位分割

secretInfo

  secretInfo  隐私信息加密

String

  digitUppercase  现金额转大写

Stroge

  [Stroge][localStorageApi]  缓存

  localStorageApi.set  设置缓存,缓存过期时间

  localStorageApi.get  读取缓存

  localStorageApi.remove  删除指定缓存

  localStorageApi.clearv  清空所有缓存

Support

  isSupportWebP  判断浏览器是否支持webP格式图片

Time

  formatPassTime  格式化${startTime}距现在的已过时间

  formatRemainTime  格式化现在距${endTime}的剩余时间

  formatUnixTime  格式化时间错位年月日

  formatTime  格式化时间戳为年月日时分秒

Url

  parseQueryString  url参数转对象

  stringfyQueryString  对象序列化

Type

  type  判断类型