CodeSampleX

샘플

@humanwhocodes/module-importer 1.0.1: ModuleImporter

검증된 샘플 — npm @humanwhocodes/module-importer 1.0.1: ModuleImporter. node 22 · linux alpine/x64 · docker에서 contract를 실행해 통과했습니다: ModuleImporter constructs with…

sha256:31027916b9f70628d34ef1c87fd27c1cb77f95166138441079b39003019ef160

이 네트워크가 제공하는 것은 하나입니다. 빌드되는 샘플. 샌드박스에서 돌리고 서명된 영수증을 보관합니다. 등급을 매기지 않고 무엇도 보증하지 않습니다 — 같은 코드가 당신 환경에서 빌드되는지는 측정한 적이 없습니다. 통과한 계약 영수증을 낸 서로 다른 서명 키의 수입니다. 하나면 작성자 혼자이고, 둘 이상이면 다른 사람도 빌드했다는 뜻입니다. 키는 스스로 만드는 것이고 뒤에 등록된 신원이 없으므로, 세는 것은 사람이 아니라 키입니다. MIT-0

실행 증거

선언된 환경과 서명된 실행을 분리해 두었습니다. 이 샘플이 무엇을 어디서 실행했는지 그대로 볼 수 있습니다.

증거 기준
서명된 컨트랙트 통과
검증 영수증
1
빌드한 서명 키
1
선언된 환경 node 22.23 linux 24 · ubuntu · glibc 2.39 x64 node 22.23 javascript npm

검증 실행 환경

환경 컨트랙트 단계 실행일
node 22 · linux alpine/x64 · docker ed25519:c1973797be207ac4 PASS compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS
CONTAINER_RUN · node-typescript@1
2026-08-20

케이스

HOW
목표
verify @humanwhocodes/module-importer.ModuleImporter in pkg:npm/%40humanwhocodes/module-importer@1.0.1
패키지
심벌
  • @humanwhocodes/module-importer.ModuleImporter
환경
node 22.23.2
생성일
2026-08-20T22:26:02Z

컨트랙트

  1. ModuleImporter constructs with base working directory
  2. ModuleImporter.resolve returns absolute path for CommonJS file
  3. ModuleImporter.resolve returns absolute path for ESM file
  4. ModuleImporter.import loads CommonJS module asynchronously
  5. ModuleImporter.import loads ESM module asynchronously

파일

  • PROMPT.md
  • csx.json
  • fixtures/sample-cjs.cjs
  • fixtures/sample-esm.mjs
  • index.js
  • package-lock.json
  • package.json
  • spec.json
  • test/contract.js

소스 아티팩트 내려받기 (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 @humanwhocodes/module-importer.ModuleImporter in pkg:npm/%40humanwhocodes/module-importer@1.0.1
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:npm/%40humanwhocodes/module-importer@1.0.1
Demonstrate these symbols/APIs:
  - @humanwhocodes/module-importer.ModuleImporter
Constraints:
  - executionContext: node
Required runtime conditions:
  - ecosystem: npm
  - language: javascript
  - moduleSystem: cjs
  - runtime: node@22.23.2

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:8635c87d4b27f6a7c4988cff803f02bc34e580f72ef9439f28221c2be634c920","constraints":{"executionContext":"node"},"contract":["ModuleImporter constructs with base working directory","ModuleImporter.resolve returns absolute path for CommonJS file","ModuleImporter.resolve returns absolute path for ESM file","ModuleImporter.import loads CommonJS module asynchronously","ModuleImporter.import loads ESM module asynchronously"],"goal":"verify @humanwhocodes/module-importer.ModuleImporter in pkg:npm/%40humanwhocodes/module-importer@1.0.1","kind":"HOW","packages":["pkg:npm/%40humanwhocodes/module-importer@1.0.1"],"schemaVersion":1,"symbols":["@humanwhocodes/module-importer.ModuleImporter"]},"contractCommand":["node","test/contract.js"],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"npm","executionContext":"node","language":"javascript","libc":"glibc","libcVersion":"2.39","moduleSystem":"cjs","os":"linux","osVersionBucket":"24","packageManager":"npm","runtime":"node","runtimeVersion":"22.23.2","schemaVersion":1},"license":"MIT-0","packages":["pkg:npm/%40humanwhocodes/module-importer@1.0.1"],"schemaVersion":1,"subject":"pkg:npm/%40humanwhocodes/module-importer@1.0.1","symbols":["@humanwhocodes/module-importer.ModuleImporter"],"verifierAdapter":"node-typescript@1"}
fixtures/sample-cjs.cjs
module.exports = {
  type: "commonjs",
  add: (a, b) => a + b,
  message: "cjs-success"
};
fixtures/sample-esm.mjs
export const type = "esm";
export const multiply = (a, b) => a * b;
export const message = "esm-success";
index.js
const { ModuleImporter } = require("@humanwhocodes/module-importer");

function createModuleImporter(baseDir) {
  return new ModuleImporter(baseDir);
}

module.exports = {
  ModuleImporter,
  createModuleImporter
};
package-lock.json
{
  "name": "module-importer-sample",
  "version": "1.0.0",
  "lockfileVersion": 3,
  "requires": true,
  "packages": {
    "": {
      "name": "module-importer-sample",
      "version": "1.0.0",
      "dependencies": {
        "@humanwhocodes/module-importer": "1.0.1"
      }
    },
    "node_modules/@humanwhocodes/module-importer": {
      "version": "1.0.1",
      "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
      "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
      "license": "Apache-2.0",
      "engines": {
        "node": ">=12.22"
      },
      "funding": {
        "type": "github",
        "url": "https://github.com/sponsors/nzakas"
      }
    }
  }
}
package.json
{
  "name": "module-importer-sample",
  "version": "1.0.0",
  "private": true,
  "description": "Clean-room verification sample for @humanwhocodes/module-importer",
  "main": "index.js",
  "scripts": {
    "test": "node test/contract.js"
  },
  "dependencies": {
    "@humanwhocodes/module-importer": "1.0.1"
  }
}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify @humanwhocodes/module-importer.ModuleImporter in pkg:npm/%40humanwhocodes/module-importer@1.0.1",
  "kind": "HOW",
  "packages": [
    "pkg:npm/%40humanwhocodes/module-importer@1.0.1"
  ],
  "symbols": [
    "@humanwhocodes/module-importer.ModuleImporter"
  ],
  "constraints": {
    "executionContext": "node"
  },
  "runtimeConditions": {
    "ecosystem": "npm",
    "language": "javascript",
    "moduleSystem": "cjs",
    "runtime": "node@22.23.2"
  }
}
test/contract.js
const assert = require("assert");
const path = require("path");
const { ModuleImporter } = require("@humanwhocodes/module-importer");

async function runContractTests() {
  const fixturesDir = path.resolve(__dirname, "../fixtures");
  const importer = new ModuleImporter(fixturesDir);

  // Contract 1: ModuleImporter constructs with base working directory
  assert.ok(importer instanceof ModuleImporter, "importer must be instance of ModuleImporter");
  assert.strictEqual(typeof importer.cwd, "string", "importer.cwd must be a string");
  assert.ok(importer.cwd.endsWith("/"), "importer.cwd must end with a trailing slash");

  // Contract 2: ModuleImporter.resolve returns absolute path for CommonJS file
  const cjsPath = importer.resolve("./sample-cjs.cjs");
  assert.strictEqual(typeof cjsPath, "string", "resolve should return string path");
  assert.ok(cjsPath.endsWith("sample-cjs.cjs"), "resolve path should end with sample-cjs.cjs");

  // Contract 3: ModuleImporter.resolve returns absolute path for ESM file
  const esmPath = importer.resolve("./sample-esm.mjs");
  assert.strictEqual(typeof esmPath, "string", "resolve should return string path");
  assert.ok(esmPath.endsWith("sample-esm.mjs"), "resolve path should end with sample-esm.mjs");

  // Contract 4: ModuleImporter.import loads CommonJS module asynchronously
  const cjsModule = await importer.import("./sample-cjs.cjs");
  assert.ok(cjsModule, "imported cjs module must be defined");
  assert.ok(cjsModule.default, "cjs module default export must be present");
  assert.strictEqual(cjsModule.default.type, "commonjs", "cjs module type must match");
  assert.strictEqual(cjsModule.default.add(5, 7), 12, "cjs add function must compute correctly");
  assert.strictEqual(cjsModule.default.message, "cjs-success", "cjs message must match");

  // Contract 5: ModuleImporter.import loads ESM module asynchronously
  const esmModule = await importer.import("./sample-esm.mjs");
  assert.ok(esmModule, "imported esm module must be defined");
  assert.strictEqual(esmModule.type, "esm", "esm module type must match");
  assert.strictEqual(esmModule.multiply(6, 7), 42, "esm multiply function must compute correctly");
  assert.strictEqual(esmModule.message, "esm-success", "esm message must match");

  console.log("Contract verified successfully.");
}

runContractTests().catch((error) => {
  console.error("Contract test failed:", error);
  process.exit(1);
});

오리진 시더

익명