CodeSampleX

Пример

pretty-bytes 5.6.0

Проверенный пример — npm pretty-bytes 5.6.0. Контракт выполнен на node 22 · linux debian/x64 · docker и пройден: prettyBytes formats byte counts into…

sha256:4a01bb0d80d13fd5c48401e4776324ab901ba07d8b9793d5aefeb92c9eadfe55

Эта сеть предлагает одно: образец, который собирается. Она запустила его в песочнице и сохранила подписанную квитанцию. Она ничего не оценивает и ничего не гарантирует — собирается ли тот же код у вас, она не измеряла. Сколько различных ключей подписи подали пройденную квитанцию контракта. Один — только автор; больше одного — значит, кто-то ещё тоже собрал. Ключ создаётся сам и не имеет зарегистрированной личности, поэтому считаются ключи, а не люди. MIT-0

Свидетельства выполнения

Заявленное окружение и подписанные запуски разделены, чтобы вы точно видели, что этот образец запускал и где.

Основа свидетельства
Подписанный контракт пройден
Квитанции проверки
1
Ключи подписи, собравшие его
1
Заявленная среда linux 24 · ubuntu · glibc 2.39 x64 npm

Среды запусков проверки

Окружение Контракт Этапы Запуск
node 22 · linux debian/x64 · docker ed25519:c1973797be207ac4 PASS compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS
CONTAINER_RUN · node-typescript@1node:22@sha256:8a34c4ab3ea2…
2026-09-16

Кейс

HOW
Цель
verify pkg:npm/pretty-bytes@5.6.0
Пакеты
Создан
2026-09-16T20:54:22Z

Контракт

  1. prettyBytes formats byte counts into human-readable SI strings with appropriate metric prefixes
  2. prettyBytes formats byte counts using binary units with powers of 1024 when binary option is true
  3. prettyBytes formats bit counts when bits option is true
  4. prettyBytes prefixes signed indicators when signed option is true
  5. prettyBytes controls decimal precision using minimumFractionDigits and maximumFractionDigits options
  6. prettyBytes throws TypeError when input is not a finite number
  7. prettyBytes formats localized numbers when locale option is provided

Файлы

  • PROMPT.md
  • csx.json
  • package-lock.json
  • package.json
  • spec.json
  • test/contract.mjs

Скачать артефакт с исходным кодом (tar.gz)

Исходный код

PROMPT.md
Clean-room public code sample — generation instructions

Write a brand-new, minimal, self-contained code sample in this clean-room directory.
Do not copy, paraphrase, or reference any existing project source. Work only from this spec.

A csx.json manifest scaffold already exists. Do not recreate it from memory. Preserve its case.goal, packages and symbols; fill its empty case.contract with exact assertions and correct its environment, commands and verifierAdapter for the files you generate.

Goal: verify pkg:npm/pretty-bytes@5.6.0
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:npm/pretty-bytes@5.6.0

Rules:
  - One focused purpose; the smallest project that proves the goal.
  - Include a contract test (test/contract.*) that runs OFFLINE and exits 0 exactly when the goal behavior works.
  - Pin every dependency with a lockfile so resolution is reproducible.
  - No secrets, credentials, or tokens. No real URLs (only example.com or localhost). No absolute paths.
  - No personal names, emails, company names, or project identifiers of any kind.
  - No binaries and no generated output (node_modules, dist, target, venv, .git, .env).
  - Keep it under 200 files and 256KB packed.
csx.json
{"case":{"caseId":"case:sha256:812f62ee3a82cc5a252f87aebe14520ea3d4fc25d83300d56c89839f32dc644d","contract":["prettyBytes formats byte counts into human-readable SI strings with appropriate metric prefixes","prettyBytes formats byte counts using binary units with powers of 1024 when binary option is true","prettyBytes formats bit counts when bits option is true","prettyBytes prefixes signed indicators when signed option is true","prettyBytes controls decimal precision using minimumFractionDigits and maximumFractionDigits options","prettyBytes throws TypeError when input is not a finite number","prettyBytes formats localized numbers when locale option is provided"],"goal":"verify pkg:npm/pretty-bytes@5.6.0","kind":"HOW","packages":["pkg:npm/pretty-bytes@5.6.0"],"schemaVersion":1},"contractCommand":["node","test/contract.mjs"],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"npm","libc":"glibc","libcVersion":"2.39","os":"linux","osVersionBucket":"24","packageManager":"npm","schemaVersion":1},"license":"MIT-0","packages":["pkg:npm/pretty-bytes@5.6.0"],"schemaVersion":1,"subject":"pkg:npm/pretty-bytes@5.6.0","verifierAdapter":"node-typescript@1"}
package-lock.json
{
  "name": "sample-pretty-bytes",
  "version": "1.0.0",
  "lockfileVersion": 3,
  "requires": true,
  "packages": {
    "": {
      "name": "sample-pretty-bytes",
      "version": "1.0.0",
      "license": "MIT-0",
      "dependencies": {
        "pretty-bytes": "5.6.0"
      }
    },
    "node_modules/pretty-bytes": {
      "version": "5.6.0",
      "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz",
      "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==",
      "license": "MIT",
      "engines": {
        "node": ">=6"
      },
      "funding": {
        "url": "https://github.com/sponsors/sindresorhus"
      }
    }
  }
}
package.json
{
  "name": "sample-pretty-bytes",
  "version": "1.0.0",
  "private": true,
  "license": "MIT-0",
  "dependencies": {
    "pretty-bytes": "5.6.0"
  }
}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify pkg:npm/pretty-bytes@5.6.0",
  "kind": "HOW",
  "packages": [
    "pkg:npm/pretty-bytes@5.6.0"
  ]
}
test/contract.mjs
import assert from 'node:assert';
import prettyBytes from 'pretty-bytes';

// 1. prettyBytes formats byte counts into human-readable SI strings with appropriate metric prefixes
assert.strictEqual(prettyBytes(0), '0 B');
assert.strictEqual(prettyBytes(0.4), '0.4 B');
assert.strictEqual(prettyBytes(100), '100 B');
assert.strictEqual(prettyBytes(1000), '1 kB');
assert.strictEqual(prettyBytes(1000 * 1000), '1 MB');
assert.strictEqual(prettyBytes(1337), '1.34 kB');

// 2. prettyBytes formats byte counts using binary units with powers of 1024 when binary option is true
assert.strictEqual(prettyBytes(1024, { binary: true }), '1 kiB');
assert.strictEqual(prettyBytes(1024 * 1024, { binary: true }), '1 MiB');

// 3. prettyBytes formats bit counts when bits option is true
assert.strictEqual(prettyBytes(1337, { bits: true }), '1.34 kbit');
assert.strictEqual(prettyBytes(1024, { bits: true, binary: true }), '1 kibit');

// 4. prettyBytes prefixes signed indicators when signed option is true
assert.strictEqual(prettyBytes(42, { signed: true }), '+42 B');
assert.strictEqual(prettyBytes(-42, { signed: true }), '-42 B');
assert.strictEqual(prettyBytes(-42), '-42 B');
assert.strictEqual(prettyBytes(0, { signed: true }), ' 0 B');

// 5. prettyBytes controls decimal precision using minimumFractionDigits and maximumFractionDigits options
assert.strictEqual(prettyBytes(1900, { minimumFractionDigits: 3 }), '1.900 kB');
assert.strictEqual(prettyBytes(1920, { maximumFractionDigits: 1 }), '1.9 kB');

// 6. prettyBytes throws TypeError when input is not a finite number
assert.throws(() => prettyBytes(NaN), { name: 'TypeError' });
assert.throws(() => prettyBytes(Infinity), { name: 'TypeError' });
assert.throws(() => prettyBytes('100'), { name: 'TypeError' });

// 7. prettyBytes formats localized numbers when locale option is provided
assert.strictEqual(prettyBytes(1337, { locale: 'de' }), '1,34 kB');

Исходный сидер

аноним