The Web Locks API allows scripts running in one tab or worker to asynchronously acquire a lock, hold it while work is performed, then release it. While held, no other script executing in the same origin can acquire the same lock, which allows a web app running in multiple tabs or workers to coordinate work and the use of resources.
Web Locks Concepts and Usage
A lock is an abstract concept representing some potentially shared resource, identified by a name chosen by the web app. For example, if a web app running in multiple tabs wants to ensure that only one tab is syncing data between the network and Indexed DB, each tab could try to acquire a "my_net_db_sync" lock, but only one tab will succeed (the leader election pattern.)
The API is used as follows:
The lock is requested.
Work is done while holding the lock in an asynchronous task.
The lock is automatically released when the task completes.
js
navigator.locks.request("my_resource",async(lock)=>{// The lock has been acquired.awaitdo_something();awaitdo_something_else();// Now the lock will be released.});
While a lock is held, requests for the same lock from this execution context, or from other tabs/workers, will be queued. The first queued request will be granted only when the lock is released.
The API provides optional functionality that may be used as needed, including:
returning values from the asynchronous task
shared and exclusive lock modes
conditional acquisition
diagnostics to query the state of locks in an origin
an escape hatch to protect against deadlocks
Locks are scoped to origins; the locks acquired by a tab from https://example.com have no effect on the locks acquired by a tab from https://example.org:8080 as they are separate origins.
The main entry point is navigator.locks.request() which requests a lock. It takes a lock name, an optional set of options, and a callback. The callback is invoked when the lock is granted. The lock is automatically released when the callback returns, so usually the callback is an async function, which causes the lock to be released only when the async function has completely finished.
The request() method itself returns a promise which resolves once the lock has been released; within an async function, a script can await the call to make the asynchronous code flow linearly. For example:
js
awaitdo_something_without_lock();// Request the lock.await navigator.locks.request("my_resource",async(lock)=>{// The lock has been acquired.awaitdo_something_with_lock();awaitdo_something_else_with_lock();// Now the lock will be released.});// The lock has been released.awaitdo_something_else_without_lock();
Options
Several options can be passed when requesting a lock:
mode: The default mode is "exclusive", but "shared" can be specified. There can be only one "exclusive" holder of a lock, but multiple "shared" requests can be granted at the same time. This can be used to implement the readers-writer pattern.
signal: An AbortSignal can be passed in, allowing a lock request to be aborted. This can be used to implement a timeout on requests.
ifAvailable: If specified, the lock request will fail if the lock cannot be granted immediately without waiting. The callback is invoked with null.
Monitoring
The navigator.locks.query() method can be used by scripts to introspect the state of the lock manager for the origin. This can be useful when debugging, for example, identifying why a lock could not be acquired. The results are a snapshot of the lock manager state, which identifies held and requested locks and some additional data (e.g. mode) about each, at the time the snapshot was taken.
Advanced use
For more complicated cases, such as holding the lock for an arbitrary amount of time, the callback can return a promise explicitly resolved by the script:
js
// Capture promise control functions:let resolve, reject;const p =newPromise((res, rej)=>{
resolve = res;
reject = rej;});// Request the lock:
navigator.locks.request("my_resource",// Lock is acquired.(lock)=> p,// Now lock will be held until either resolve() or reject() is called.);
Deadlocks
A deadlock occurs when a process can no longer make progress because each part is waiting on a request that cannot be satisfied. This can occur with this API in complex use-cases, for example, if multiple locks are requested out-of-order. If tab 1 holds lock A and tab 2 holds lock B, then tab 1 attempts to also acquire lock B and tab 2 attempts to also acquire lock A, neither request can be granted. Web applications can avoid this through several strategies, such as ensuring lock requests are not nested, or are always well ordered, or have timeouts. Note that such deadlocks only affect the locks themselves and code depending on them; the browser, other tabs, and other script in the page is not affected.