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

@framehub/retry

v0.1.1

Published

A "Simple and Stupid" retry function.

Downloads

5

Readme

Retry

A "Simple and Stupid" retry function.

背景

有时候,我们需要重复执行某个动作,直到结果达到预期。比如我们在等待某个耗时操作的完成,如果它没有提供回调的话,我们就需要有一套重试机制来轮询预期结果是否已经达成。再比如某个操作就是需要重复多次才有可能成功,我们也需要重试多次并检查操作结果。

为满足上述需求,我们创建了 Retry 这个小项目。Retry 允许我们指定重试次数和重试间隔,帮我们定时调用检查器函数,并通过 Promise 来告知最终的检查结果。

功能

函数签名:

retry(
	validator, // [函数或异步函数] 检查器,判断是否满足检查条件
	{
		interval, // [数字] 重试间隔,单位毫秒
		attempts, // [数字] 最大重试次数
	}
)

主要行为:

  • 返回一个 Promise。
  • 如果在指定的次数内重试成功,则 Promise resolve。
  • 如果在指定的次数内重试失败,则 Promise reject。
  • 如果 attempts 是 N,则 validator 最多会被调用 1+N 次。

使用方法

安装:

npm install @framehub/retry

应用示例:

const retry = require('@framehub/retry')

// 定义检查器
function checkStatus() {
	// 假设可以通过 `taskStatus` 这个变量来读取任务状态
	return taskStatus === 'done'
}

// 启动重试行为
retry(checkStatus, {
	interval: 1000,  // 每秒检查一次
	attempts: 8,     // 最多重试 8 次
})
	.then(() => {
		// 如果在指定次数内检查通过,进入这里
	})
	.catch(() => {
		// 如果未能在指定次数内检查通过,进入这里
	})

License

MIT