Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zcong1993/singleflight
singleflight for js
https://github.com/zcong1993/singleflight
Last synced: about 23 hours ago
JSON representation
singleflight for js
- Host: GitHub
- URL: https://github.com/zcong1993/singleflight
- Owner: zcong1993
- License: mit
- Created: 2019-07-02T03:40:53.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-26T20:19:06.000Z (about 1 month ago)
- Last Synced: 2024-10-01T23:04:56.433Z (about 1 month ago)
- Language: TypeScript
- Homepage:
- Size: 399 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# singleflight
[![NPM version](https://img.shields.io/npm/v/@zcong/singleflight.svg?style=flat)](https://npmjs.com/package/@zcong/singleflight) [![NPM downloads](https://img.shields.io/npm/dm/@zcong/singleflight.svg?style=flat)](https://npmjs.com/package/@zcong/singleflight) [![JS Test](https://github.com/zcong1993/singleflight/actions/workflows/js-test.yml/badge.svg)](https://github.com/zcong1993/singleflight/actions/workflows/js-test.yml) [![codecov](https://codecov.io/gh/zcong1993/singleflight/branch/master/graph/badge.svg)](https://codecov.io/gh/zcong1993/singleflight)
> singleflight for js
## Install
```sh
$ yarn add @zcong/singleflight
# or npm
$ npm i @zcong/singleflight --save
```## Example
```ts
import { Singleflight } from '../src'const sf = new Singleflight()
const delay = (n: number) => new Promise((resolve) => setTimeout(resolve, n))
const fn = async () => {
console.log('fn called')
await delay(1000)
return 'fn result'
}const errFn = async () => {
console.log('err fn called')
await delay(2000)
throw new Error('panic')
}Array(10)
.fill(null)
.forEach(() => {
sf.do('test', fn).then(console.log).catch(console.log)sf.do('test-err', errFn)
.then(console.log)
.catch((err) => console.log(`err: ${err.message}`))
})
```## License
MIT © zcong1993