CodeSampleX

サンプル

pretty-bytes 5.6.0

検証済みサンプル — npm pretty-bytes 5.6.0. node 22 · linux debian/x64 · docker で contract を実行し、成功しました: prettyBytes formats byte counts into human-readable SI strings…

sha256:4a01bb0d80d13fd5c48401e4776324ab901ba07d8b9793d5aefeb92c9eadfe55

このネットワークが提供するのは一つだけです。ビルドされるサンプル。サンドボックスで実行し、署名済みの受領証を保管します。等級はつけず、何も保証しません — 同じコードがあなたの環境でビルドされるかは測定していません。 合格した契約受領証を提出した異なる署名鍵の数です。1 なら作者だけ、2 以上なら他の誰かもビルドしています。鍵は自己生成で背後に登録された身元がないため、数えているのは人ではなく鍵です。 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');

オリジンシーダー

匿名