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

js-function-sdk

v0.0.1

Published

A collection of useful Javascript functions and can use every day

Downloads

6

Readme

js-function-sdk NPM version NPM monthly downloads NPM total downloads license

A collection of useful Javascript functions and can use every day

Install

npm i js-function-sdk

Core

Core module

Usage

import { Core } from "js-function-sdk";
  • 判断数据类型
// Return: String、Number、Boolean、Function、Array、Object、Null
Core.type(obj);
  • 对象扩展
Core.extend(obj);
  • 事件监听
//  Param: a dom 元素
//  Param: b 事件类型 click change scroll
//  Param: c function
//  Param: d  参数默认false=》冒泡,true为捕获
Core.addEvent(a, b, c, d);
  • 移除事件监听
//  Params: 与事件监听一致
Core.removeEvent(a, b, c, d);
  • 设置样式
//  Param: ele dom 元素
//  Param: styleObj 属性样式
Core.setStyle(ele, styleObj);
  • 初始化页面 rem 布局
// Param: designWidth 设计图尺寸
// Param: vfontSize 基本字号

Core.remInit((designWidth = 375), (vfontSize = 16));
  • 微信 h5 登录
// Param: appid 公众号 appid
// Param: fun 登录成功的回调函数
// Param: url 重新定向的域名(可省略)

Core.publicHwxLogin(appid, fun, url);
  • 获取 url 后面的参数
// Param: key 要取的值
// Param: href 取值的链接

Core.getQueryValue(href, key);
  • 数字精度处理
// Param: number 数字
// Param: fractionDigits 小数位数

Core.toFixed(number, fractionDigits);
  • 原生 ajax 请求
Core.ajax({
  method: "",
  url: "",
  data: "",
  contentType: "",
  success: function(res) {}
});

About

Contributors

License

Copyright © 2019, Darkincense. Released under the MIT License.