Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elle-j/js-series
A collection of demonstrations and deep dives of lesser-known JS/ECMAScript features
https://github.com/elle-j/js-series
Last synced: 14 days ago
JSON representation
A collection of demonstrations and deep dives of lesser-known JS/ECMAScript features
- Host: GitHub
- URL: https://github.com/elle-j/js-series
- Owner: elle-j
- License: mit
- Created: 2024-05-12T05:35:54.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-20T22:04:10.000Z (8 months ago)
- Last Synced: 2024-11-07T15:51:13.616Z (2 months ago)
- Language: JavaScript
- Size: 327 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JS Series
This is a collection of demonstrations and deep dives of lesser-known JS/ECMAScript features.
## Projects
| Main Topic | Description | Link |
|---------------------------------|---------------|------
| **Atomics and shared memory** | Parallelism in JS can be enabled by creating multiple threads via Workers. All threads could potentially access the same memory at the same time, introducing interesting concurrency issues. I will use [Atomics](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics) to demonstrate how that API can be used to handle concurrent writes by implementing a counter. | [link](./atomics/)