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

blibee-tools

v1.0.22

Published

```shell npm install blibee-tools #or yarn add blibee-tools ```

Downloads

16

Readme

安装

npm install blibee-tools
#or
yarn add blibee-tools

cookie

// 用法
import Cookie from 'blibee-tools/cookie';
componentDidMount() {
  const user_name = Cookie.get('user_name'); // 目前仅支持获取cookie
  if (!user_name) {
    window.location.href = LOGIN_URL;
    return
  }
}

EventBus

// 方法 1: on, 2: emit, 3: off
import EventBus from 'blibee-tools/event-bus';
// on 监听一个事件
function listener(params) {console.log(params)}
EventBus.on('LOADING', listener)
// emit 触发一个事件(必须监听过)
EventBus.emit('LOADING', '事件被触发')
// off 取消对事件的监听
EventBus.off('LOADING', listener)

SearchParse

获取 url 中 query 参数的工具

import SearchParse from 'blibee-tools/search-parse';
const queryMap = SearchParse.parse(location.search);
const queryName = queryMap.get('queryName');// 获取参数

axios

axios 是对 axios 库的封装, 额外增加了 download 和use方法,其他的使用方式一样(依赖axios库)

  • axios.use
// 注意事项(必须要写的代码),要在调用请求前使用一次use方法(全局只需调用一次即可)
import axios from 'blibee-tools/axios';
import { message } from 'antd'; //其他类似的UI库组件都可以,需要有error方法
axios.use(message)
  • axios.download
 /**
   * 如果有params 则表明使用的是post请求进行下载 否则是get请求下载
   * @param url 
   * @param filename 
   * @param params 
   */
axios.download(url: string, filename: string, params?: any);
  • axios.get
axios.get(url: string, params?: any, config?: any);
  • axios.setSuccessCallback()
// 设置请求成功的回调函数, 比如下面的, 前后端约定data的status不为0的时候就是异常情况,并且在data.msg中附带异常信息就可以这么处理
function successCallback(response: AxiosResponse<any>) {
  const { data } = response;
  if (data && data.status) {
    message.error(data.msg);
    response.data = null;
  }
  return response;
}

axios.setSuccessCallback(successCallback)

ToolBox

ToolBox 对象包含两个工具函数,debounce(防抖) 和 throttle(节流)

import ToolBox from 'blibee-tools/ToolBox';

const toolBox = new ToolBox();

toolBox.debounce(fn: Function, delay: number);

toolBox.throttle(fn: Function, time: number);

FormBuilder (antd only)

FormBuilder 是一个高阶组件,允许开发者仅需少量的配置,就可以实现一个表单

formBuilder

使用示例 codesandbox

使用文档