
Security News
Critical Security Vulnerability in React Server Components
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.
@vocdoni/common
Advanced tools
@vocdoni/common contains shared helpers, models and type definitions for the dvote-js library
Use npm to install @vocdoni/common.
npm install @vocdoni/common
import { hexStringToBuffer, uintArrayToHex, bigIntToBuffer, bufferToBigInt } from "@vocdoni/common"
hexStringToBuffer("AABBCC12")
// returns '<Buffer aa bb cc 12>'
const buffer = new Uint8Array([10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 200, 250, 255])
uintArrayToHex(buffer)
// returns '0a141e28323c46505a64c8faff'
uintArrayToHex(buffer, true)
// returns '0x0a141e28323c46505a64c8faff'
const bigint = BigInt("123")
bigIntToBuffer(bigint)
// returns '<Buffer 7b>'
bufferToBigInt(Buffer.from("64", "hex"))
// returns '100n'
import { Random } from "@vocdoni/common"
const bytes = Random.getBytes(8)
// returns '<Buffer 4b 77 f5 f6 30 fc 1a d2>' (random)
const hex = Random.getHex()
// returns '0x64fa37b4d6139678787efebb8bbddcb104de323ccb980343dbfaceca0a49ac83' (32 byte hash (starting with "0x"))
const bigint = Random.getBigInt(256n)
// returns '28n' (random)
const shuffle = Random.shuffle([1, 2, 3, 4])
// returns '[ 2, 4, 1, 3 ]' (random order)
To execute library tests just run
npm run test
FAQs
JavaScript/TypeScript common package
We found that @vocdoni/common demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.

Security News
TypeScript 6.0 will be the last JavaScript-based major release, as the project shifts to the TypeScript 7 native toolchain with major build speedups.