Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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/)