Security News
RubyGems.org Adds New Maintainer Role
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.
@20i/distributed-lock
Advanced tools
This library talks to our aws distributed lock servers and provides automatic locking/unlocking on functions
import DistributedLock from "@20i/distributed-lock"
async function test() {
const dl = new DistributedLock("your-project-api-key")
const result = await dl.acquireLock({
lockName: "my-lock",
fn: async () => {
await doSomeThinkingThatTakesAWhile()
// during this time, if any other client wants to get 'my-lock', it will wait until this long fn is done
return 10
}
})
console.log(result) // 10
}
As soon as the function is done, the lock will be removed!
Be warned that locks have an expiration time of 10 seconds by default. However, if you expect that your function will take longer, you can provide a custom expiration time!
import DistributedLock from "@20i/distributed-lock"
async function test() {
const dl = new DistributedLock("your-project-api-key")
const result = await dl.acquireLock({
lockName: "my-lock",
expirationTimeMs: 20000, // "my-lock" will now expire 20 seconds after it is created!
fn: async () => {
await doSomeThinkingThatTakesAWhile()
// during this time, if any other client wants to get my-lock, it will wait until this long fn is done
return 10
}
})
console.log(result) // 10
}
You can also provide a timeout if you do not wish to wait past a certain amount of time.
import DistributedLock from "@20i/distributed-lock"
async function test() {
const dl = new DistributedLock("your-project-api-key")
const result = await dl.acquireLock({
lockName: "my-lock",
timeout: 5000, // if someone else is using "my-lock" and we end up waiting for than 5000 ms, we will stop trying!
fn: async () => {
await doSomeThinkingThatTakesAWhile()
// during this time, if any other client wants to get my-lock, it will wait until this long fn is done
return 10
}
})
console.log(result) // 10
}
FAQs
Small library to sync time to a time server
The npm package @20i/distributed-lock receives a total of 0 weekly downloads. As such, @20i/distributed-lock popularity was classified as not popular.
We found that @20i/distributed-lock demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 14 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
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.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.