
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@bmehder/somedata
Advanced tools
Quick-use structured data for testing, demos, and functional programming.
No setup, no dependencies — just import and go.
npm install @bmehder/somedata
Or use via CDN (ESM-compatible):
<script type="module">
import { list, obj } from 'https://unpkg.com/@bmehder/somedata/index.js'
console.log(list, obj)
</script>
import * as data from '@bmehder/somedata'
console.log(data.list)
console.log(data.range(3))
console.log(data.random.obj())
import { list, obj, users, random } from '@bmehder/somedata'
console.log(list)
console.log(users(3))
console.log(random.list())
import { random as r } from '@bmehder/somedata'
console.log(r.obj())
console.log(r.list())
list – [1, 2, 3, 4, 5]obj – { id: 1, name: 'Test', active: true }nested – { a: { b: { c: 42 } } }entries – [['a', 1], ['b', 2],...]tree – Tree-structured nested objectrange(stop) – [0, 1, ..., stop - 1]range(start, stop) – [start, ..., stop - 1]range(start, stop, step) – With steprepeat(value, count) – Repeat any valuematrix(rows, cols) – 2D arrayusers(n) – Sample user objects (Alice, Bob, ...)random.list() // e.g. [4, 2, 1, 5, 3]
random.obj() // e.g. { id: 57, name: 'Nina' }
MIT
FAQs
Quick-use structured data for testing, demos, and FP utils.
We found that @bmehder/somedata 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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.