
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@lokalise/id-utils
Advanced tools
This package adds common utils that provide IDs compatible with CockroachDB UUID type.
This package adds common utils that provide IDs compatible with CockroachDB UUID type.
import { generateMonotonicUuid } from '@lokalise/id-utils'
const newId = generateMonotonicUuid()
Provided ID conforms with an abstract UUID representation (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx) and is generated by ULID algorithm, which makes it lexicographically sortable. You can use basic language functions to sort by these ids:
import { generateMonotonicUuid } from '@lokalise/id-utils'
const ids = []
for (const i of Array(1000)) {
ids.push(generateMonotonicUuid())
}
const sorted = ids.sort()
// sorted == ids
This package also provides a function to generate a UUID7. It is a:
import { generateUuid7 } from '@lokalise/id-utils'
generateUuid7()
FAQs
This package adds common utils that provide IDs compatible with CockroachDB UUID type.
We found that @lokalise/id-utils demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 16 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.