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

@hcfy/utils

v3.2.0

Published

开发划词翻译时用到的一些工具函数。

Downloads

26

Readme

@hcfy/utils

开发划词翻译时用到的一些工具函数。

工具函数的运行环境

工具函数根据代码可用环境分为了以下几类:

| 类别 | 说明 | 运行所需环境 | | ---------------------------------------- | ---------------------------------------------------------------------------------- | --------------------------------------------------------- | | @hcfy/utils | 支持在所有 JavaScript 运行环境中使用。 | | | @hcfy/utils/dom | 需要有 DOM 环境才能运行的工具函数。 | DOM 环境 | | @hcfy/utils/react-hooks | React Hooks | DOM 环境、React 运行时 | | @hcfy/utils/browser-extension | 可以在所有扩展程序环境中运行的工具函数。同时兼容 Manifest V2 与 V3。 | 内容脚本可用的 Manifest V2 chrome.* API 且 callback 形式 | | @hcfy/utils/browser-extension-no-content | 可以在除了内容脚本的其它扩展程序环境中运行的工具函数。同时兼容 Manifest V2 与 V3。 | 全部 Manifest V2 chrome.* API 且 callback 形式 |

以下是暂时还没有工具函数的几个类别:

| 类别 | 说明 | 运行所需环境 | | ----------------------------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------- | | @hcfy/utils/browser-extension-dom | 可以在拥有 DOM 环境的扩展程序环境中使用。同时兼容 Manifest V2 与 V3。 | 内容脚本可用的 Manifest V2 chrome.* API 且 callback 形式、DOM 环境 | | @hcfy/utils/browser-extension-dom-no-content | 可以在拥有 DOM 环境的、除了内容脚本的其它扩展程序环境中运行的工具函数。同时兼容 Manifest V2 与 V3。 | 全部 Manifest V2 chrome.* API 且 callback 形式、DOM 环境 | | @hcfy/utils/browser-extension-v3 | 可以在所有扩展程序环境中运行的工具函数。只兼容 Manifest V3。 | 内容脚本可用的 Manifest V3 chrome.* API | | @hcfy/utils/browser-extension-v3-no-content | 可以在除了内容脚本的其它扩展程序环境中运行的工具函数。只兼容 Manifest V3。 | 全部 Manifest V3 chrome.* API | | @hcfy/utils/browser-extension-v3-dom | 可以在拥有 DOM 环境的扩展程序环境中使用。只兼容 Manifest V3。 | 内容脚本可用的 Manifest V3 chrome.* API、DOM 环境 | | @hcfy/utils/browser-extension-v3-dom-no-content | 可以在拥有 DOM 环境的、除了内容脚本的其它扩展程序环境中运行的工具函数。只兼容 Manifest V3。 | 全部 Manifest V3 chrome.* API、DOM 环境 | | @hcfy/utils/browser-extension-v3-service-worker | 只能在 Manifest V3 的背景脚本(service worker)里使用 | 全部 Manifest V3 chrome.* API、service worker 环境 |

解释一下运行环境:

  • DOM 环境:可以用 document.querySelector() 这种 DOM API。
  • Node.js 环境:可以用 Node.js 的内置模块。
  • Electron 环境:可以用 Electron 的内置模块。
  • 内容脚本可用的 Manifest V2 chrome.* API 且 callback 形式:内容脚本才能用的那一少部分 chrome.* API,且这些 API 是 Manifest V2 里有的并使用 callback 方式调用。这意味着这些工具函数能同时兼容 Manifest V2 与 V3。
  • 全部 Manifest V2 chrome.* API 且 callback 形式:全部 chrome.* API,且这些 API 是 Manifest V2 里有的并使用 callback 方式调用。这意味着这些工具函数能同时兼容 Manifest V2 与 V3。
  • 内容脚本可用的 Manifest V3 chrome.* API:内容脚本才能用的那一少部分 chrome.* API,且这些 API 可以是 Manifest V3 里新加的。这意味着这些工具函数只兼容 Manifest V3,所以可以直接使用 promise 方式调用 chrome.* API。
  • 全部 Manifest V3 chrome.* API:全部 chrome.* API,且这些 API 可以是 Manifest V3 里新加的。这意味着这些工具函数只兼容 Manifest V3,所以可以直接使用 promise 方式调用 chrome.* API。
  • service worker 环境:能用 service worker 独有的 API,比如 self.addEventListener('install', ...)