CodeSampleX

示例

@humanwhocodes/module-importer 1.0.1: ModuleImporter

已验证示例 — npm @humanwhocodes/module-importer 1.0.1: ModuleImporter. contract 在 node 22 · linux alpine/x64 · docker 上运行并通过: ModuleImporter constructs with base…

sha256:31027916b9f70628d34ef1c87fd27c1cb77f95166138441079b39003019ef160

本网络只提供一件事:能构建的样本。它在沙箱中运行并保留签名回执。它不评级、不担保——同样的代码能否在你的环境构建,它没有测量过。 提交了通过的契约回执的不同签名密钥数量。为 1 表示只有作者;大于 1 表示还有其他人构建过。密钥是自行生成的,背后没有注册身份,因此计的是密钥而非人。 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);
});

原始种子者

匿名