
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
record-tuple
Advanced tools
Lightweight, typed implementation of the Records and Tuples proposal, only supports standard library. See @bloomberg/record-tuple-polyfill
for experimental syntax support with a babel transform.
npm install record-tuple
import { Tuple, Record } from "record-tuple";
// Structural equality
Tuple(1, 2, 3) === Tuple(1, 2, 3); // true
Record({ a: "a", b: "b" }) === Record({ a: "a", b: "b" }); // true
// As Map/Set keys
const map = new Map();
map.set(Tuple(1, 2, 3), "value 1");
map.set(Record({ a: "a" }), "value 2");
map.get(Tuple(1, 2, 3)); // "value 1"
map.get(Record({ a: "a" })); // "value 2"
// Types
const tuple: Tuple<number, number> = Tuple(1, 2);
const tuple: Tuple<number, number> = [1, 2]; // TypeError
const tuple: Tuple<number, number> = Tuple(1, 2, 3); // TypeError
const record: Record<{ a: string }> = Record({ a: "a" });
const record: Record<{ a: string }> = { a: "a" }; // TypeError
FAQs
Lightweight Record and Tuple data structures
The npm package record-tuple receives a total of 568 weekly downloads. As such, record-tuple popularity was classified as not popular.
We found that record-tuple demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.