Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
browser-tabs-lock
Advanced tools
The browser-tabs-lock npm package provides a mechanism to ensure that only one tab of a web application is active at a time. This is useful for preventing race conditions and ensuring data consistency when multiple tabs are open.
Acquire a Lock
This feature allows you to acquire a lock with a specified key. If the lock is successfully acquired, you can perform operations that require the lock and then release it.
const { acquireLock } = require('browser-tabs-lock');
async function main() {
const lock = await acquireLock('my-lock');
if (lock) {
console.log('Lock acquired');
// Perform operations that require the lock
lock.release();
} else {
console.log('Failed to acquire lock');
}
}
main();
Release a Lock
This feature allows you to release a previously acquired lock. This is important to ensure that other tabs can acquire the lock when needed.
const { acquireLock } = require('browser-tabs-lock');
async function main() {
const lock = await acquireLock('my-lock');
if (lock) {
console.log('Lock acquired');
// Perform operations that require the lock
lock.release();
console.log('Lock released');
} else {
console.log('Failed to acquire lock');
}
}
main();
Check Lock Status
This feature allows you to check if a lock with a specified key is currently acquired. This can be useful for debugging or for conditional logic based on lock status.
const { isLockAcquired } = require('browser-tabs-lock');
async function main() {
const lockAcquired = await isLockAcquired('my-lock');
if (lockAcquired) {
console.log('Lock is currently acquired');
} else {
console.log('Lock is not acquired');
}
}
main();
LocalForage is a fast and simple storage library for JavaScript. While it is primarily used for offline storage, it can be used to implement similar locking mechanisms by storing lock states in the local storage. However, it does not provide built-in locking mechanisms like browser-tabs-lock.
idb-keyval is a small library that provides a simple key-value store backed by IndexedDB. Similar to LocalForage, it can be used to implement custom locking mechanisms by storing lock states, but it does not offer built-in support for locks.
Broadcast Channel is a library that allows simple communication between browser tabs or workers. It can be used to implement custom locking mechanisms by broadcasting lock states between tabs, but it does not provide built-in lock management like browser-tabs-lock.
Using this package, you can easily get lock functionality across tabs on all modern browsers.
This library was originally designed to be used as a part of our project - SuperTokens - the most secure session management solution for web and mobile apps. Support us by checking it out here.
We are also offering free, one-to-one implementation support:
npm i --save browser-tabs-lock
import SuperTokensLock from "browser-tabs-lock";
let superTokensLock = new SuperTokensLock()
async function lockingIsFun() {
if (await superTokensLock.acquireLock("hello", 5000)) {
// lock has been acquired... we can do anything we want now.
// ...
await superTokensLock.releaseLock("hello");
} else {
// failed to acquire lock after trying for 5 seconds.
}
}
import SuperTokensLock from "browser-tabs-lock";
let superTokensLock = new SuperTokensLock()
superTokensLock.acquireLock("hello", 5000).then((success) => {
if (success) {
// lock has been acquired... we can do anything we want now.
// ...
superTokensLock.releaseLock("hello").then(() => {
// lock released, continue
});
} else {
// failed to acquire lock after trying for 5 seconds.
}
});
As of version 1.2.0 of browser-tabs-lock the package can also be used as in plain javascript script.
<script
type="text/javascript"
src="https://cdn.jsdelivr.net/gh/supertokens/browser-tabs-lock@1.2/bundle/bundle.js">
</script>
let lock = new supertokenslock.getNewInstance();
lock.acquireLock("hello")
.then(success => {
if (success) {
// lock has been acquired... we can do anything we want now.
...
lock.releaseLock("hello").then(() => {
// lock released, continue
});
} else {
// failed to acquire lock after trying for 5 seconds.
}
});
Also note, that if your web app only needs to work on google chrome, you can use the Web Locks API instead. This probably has true locking!
In some cases, version 1.1x did not entirely ensure mutual exclusion. To explain the problem:
Lets say you create two lock instances L1 and L2. L1 acquires a lock with key K1 and is performing some action that takes 20 seconds to finish.
Immediately after L1 acquires a lock, L2 tries to acquire a lock with the same key(K1). Normally L2 would not be able to acquire the lock until L1 releases it (in this case after 20 seconds) or when the tab that uses L1 is closed abruptly. However it is seen that sometimes L2 is able to acquire the lock automatically after 10 seconds (note that L1 has still not released the lock) - thereby breaking mutual exclusion.
This bug has been fixed and released in version 1.2x of browser-tabs-lock. We highly recommend users to upgrade to 1.2x versions.
After upgrading the only change that requires attention to is that lock.releaseLock
is now an asynchronous function and needs to be handled accordingly.
Simply change calls to releaseLock from
lock.releaseLock("hello");
to
await lock.releaseLock("hello");
Simple change calls to releaseLock from
lock.releaseLock("hello");
to
lock.releaseLock("hello")
.then(() => {
// continue
});
In an effort to make this package as production ready as possible we use puppeteer to run browser-tabs-lock in a headless browser environment and perform the following action:
Create 15 tabs in the browser. Each tab tries to acquire a lock with the same key(K1) and then updates a counter in local storage(C1) as well as updates a counter local to that tab(Ct). The local counter(Ct) serves as a way to know how many times that particular tab has updated local storage counter(C1). This process happens recursively for 20 seconds. After 20 seconds we signal all tabs to stop and after all of them have stopped, we calculate the sum of all the local counter values(sum(Ct...Cn)) for each tab and compare that with the value in local storage(C1). If the two values are the same and the value in local storage matches an estimated value then we know that all tabs use locking in a proper manner.
Create a tab(T1) which acquires a lock with a key(K1). We then create another tab(T2) that tries to acquire a lock with the same key(K1) and after waiting for some time we verify that the second tab(T2) does not acquire the lock. We close both tabs, note however that tab 1(T1) still had not released the lock. We create another tab(T3) that tries to acquire a lock with the same key(K1) and we verify that the tab is able to acquire the lock. This way we can be sure that locks are released when the tab that holds it(in this case T1) is closed abruptly.
Create a tab that creates two separate instances of the lock object I1 and I2. I1 acquires a lock with a key(K1), immediately after I2 tries to acquire the lock with the same key(K1). We verify that I2 cannot acquire the lock even after some time has passed. I1 then releases the lock and immediately after I2 tries the acquire it, we verify that I2 can now acquire the lock.
Create a tab that holds 15 separate lock instances. Each instance tries to acquire the lock using the same key(K1), it then updates a counter(C1) in local storage and also updates a local counter value specific to this instance (Ci). After incrementing the counters the instance recursively repeats this process. We wait for 20 seconds after which we signal each instance to stop and wait for all of them to stop. We then get the counter value from storage(C1) and add all local counter values(sum(Ci....Cn)) and compare the 2 values. We verify that the values are the same and the value in local storage(C1) matches an estimated value. This way we can be sure that in a single tab multiple lock instances using the same key work correctly.
For now, we are most reachable via team@supertokens.io and via the GitHub issues feature
Created with :heart: by the folks at SuperTokens. We are a startup passionate about security and solving software challenges in a way that's helpful for everyone! Please feel free to give us feedback at team@supertokens.io, until our website is ready :grinning:
FAQs
provides locking mechanism to sync across browser tabs
The npm package browser-tabs-lock receives a total of 170,136 weekly downloads. As such, browser-tabs-lock popularity was classified as popular.
We found that browser-tabs-lock demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.