Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/garethgeorge/synchronization-js
A javascript library providing synchronization primitives like locks, queues, asyncqueues, and semaphores.
https://github.com/garethgeorge/synchronization-js
Last synced: about 1 month ago
JSON representation
A javascript library providing synchronization primitives like locks, queues, asyncqueues, and semaphores.
- Host: GitHub
- URL: https://github.com/garethgeorge/synchronization-js
- Owner: garethgeorge
- Created: 2021-04-04T06:34:13.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-15T21:30:05.000Z (5 months ago)
- Last Synced: 2024-08-15T23:04:44.982Z (5 months ago)
- Language: TypeScript
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SynchronizationJs
[![synchronization](https://github.com/garethgeorge/synchronization-js/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/garethgeorge/synchronization-js/actions/workflows/build-and-test.yml)
A library providing useful JavaScript synchronization primatives. Namely the package includes
1. Queue
2. AsyncQueue
3. SemaphoreNote: semaphore can be used as a lock with `new Semaphore(1)`.