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 🙏

© 2026 – Pkg Stats / Ryan Hefner

ez-client

v1.1.2

Published

A tiny web browser(webview) tool.

Readme

简介

一个简单的浏览器/webview判别以及常用方法的集。

客户端的各种ua以及各种判别方法的封装,涵盖uc、safari、qq、微信、微博等等,以及各种基于客户端的常用操作,比如cookie的读/写/删等等。

Install

npm install ez-client --save

使用

import client from 'ez-client'

var key = 'test_cookie'

console.log('mobile: ' + client.isMobile())
console.log('weixin: ' + client.isWeiXin())

client.setCookie(key, 123, 2)

console.log(client.getCookie(key))

功能

UA

api | 入参 | 返回值 | 功能 --- | ---- | ------ | ---- isIE | - | Boolean | 判别IE内核 isOpera | - | Boolean | 判别opera内核 isWebKit | - | Boolean | 判别苹果/谷歌内核 isFireFox | - | Boolean | 判别火狐内核 isMobile | - | Boolean | 判别移动终端 isIOS | - | Boolean | 判别ios终端 isAndroid | - | Boolean | 判别android终端/uc浏览器 isIPhone | - | Boolean | 判别iPhone/QQHD浏览器 isIPad | - | Boolean | 判别iPad isWebApp | - | Boolean | 判别web应该程序,没有头部与底部 isWeiBo | - | Boolean | 判别微博 isWeiXin | - | Boolean | 判别微信 isUC | - | Boolean | 判别uc isQQ | - | Boolean | 判别qq isSafari | - | Boolean | 判别safari

Cookie

api | 入参 | 返回值 | 功能 --- | ---- | ------ | ---- setCookie | key, val, days, [path] | string | 添加/修改cookie getCookie | key | string | 获取cookie delCookie | key, [path] | - | 删除cookie

Others

api | 入参 | 返回值 | 功能 --- | ---- | ------ | ---- $extend | obj | - | 用于对client进行扩展,注意对于原有的同名api,这是个覆盖操作

Information

client内置两个信息,可直接调用输出:

  • ua:navigator.userAgent
  • lang:navigator.language