샘플
locate-path 6.0.0: sync
검증된 샘플 — npm locate-path 6.0.0: sync. node 22 · linux debian/x64 · docker에서 contract를 실행해 통과했습니다: locatePath.sync returns the first existing file in…
sha256:971b39e70bfc3906a7ab19c099d6f14c2182188fcd0c10f0b5c4797a7e6f1932
이 네트워크가 제공하는 것은 하나입니다. 빌드되는 샘플. 샌드박스에서 돌리고 서명된 영수증을 보관합니다. 등급을 매기지 않고 무엇도 보증하지 않습니다 — 같은 코드가 당신 환경에서 빌드되는지는 측정한 적이 없습니다.
통과한 계약 영수증을 낸 서로 다른 서명 키의 수입니다. 하나면 작성자 혼자이고, 둘 이상이면 다른 사람도 빌드했다는 뜻입니다. 키는 스스로 만드는 것이고 뒤에 등록된 신원이 없으므로, 세는 것은 사람이 아니라 키입니다.
MIT-0
실행 증거
선언된 환경과 서명된 실행을 분리해 두었습니다. 이 샘플이 무엇을 어디서 실행했는지 그대로 볼 수 있습니다.
- 증거 기준
- 서명된 컨트랙트 통과
- 검증 영수증
- 1
- 빌드한 서명 키
- 1
선언된 환경
node 22.23 linux 24 · ubuntu · glibc 2.39 x64 node 22.23 javascript npm 10
검증 실행 환경
| 환경 | 컨트랙트 | 단계 | 실행일 |
|---|---|---|---|
| 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-03 |
케이스
HOW- 목표
- verify locate-path.sync in pkg:npm/locate-path@6.0.0
- 심벌
-
- locate-path.sync
- 환경
- node 22.23.2
- 생성일
- 2026-09-03T03:58:49Z
컨트랙트
- locatePath.sync returns the first existing file in candidate paths
- locatePath.sync returns undefined when none of the candidate files exist
- locatePath.sync resolves directory when type option is set to directory
- locatePath.sync supports custom cwd option
- locatePath.sync ignores symlinks when allowSymlinks option is false
- locatePath.sync throws an error when an invalid type option is passed
- findFirstSync returns the first matching path synchronously
- findFirstFileSync returns only existing file paths synchronously
- findFirstDirectorySync returns only existing directory paths synchronously
- locatePathSync exported alias matches locatePath.sync
파일
- PROMPT.md
- csx.json
- index.js
- package-lock.json
- package.json
- spec.json
- test/contract.mjs
소스
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 locate-path.sync in pkg:npm/locate-path@6.0.0
Kind: HOW
Use EXACTLY these public packages and versions:
- pkg:npm/locate-path@6.0.0
Demonstrate these symbols/APIs:
- locate-path.sync
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.
{"case":{"caseId":"case:sha256:c41f5d6e05279a3f9690d1ecafcba7c6bb2183ee58db397aeda9c3444fdcca58","contract":["locatePath.sync returns the first existing file in candidate paths","locatePath.sync returns undefined when none of the candidate files exist","locatePath.sync resolves directory when type option is set to directory","locatePath.sync supports custom cwd option","locatePath.sync ignores symlinks when allowSymlinks option is false","locatePath.sync throws an error when an invalid type option is passed","findFirstSync returns the first matching path synchronously","findFirstFileSync returns only existing file paths synchronously","findFirstDirectorySync returns only existing directory paths synchronously","locatePathSync exported alias matches locatePath.sync"],"goal":"verify locate-path.sync in pkg:npm/locate-path@6.0.0","kind":"HOW","packages":["pkg:npm/locate-path@6.0.0"],"schemaVersion":1,"symbols":["locate-path.sync"]},"contractCommand":["node","test/contract.mjs"],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"npm","language":"javascript","libc":"glibc","libcVersion":"2.39","moduleSystem":"cjs","os":"linux","osVersionBucket":"24","packageManager":"npm","packageManagerVersion":"10.9.8","runtime":"node","runtimeVersion":"22.23.2","schemaVersion":1},"license":"MIT-0","packages":["pkg:npm/locate-path@6.0.0"],"schemaVersion":1,"subject":"pkg:npm/locate-path@6.0.0","symbols":["locate-path.sync"],"verifierAdapter":"node-typescript@1"}
'use strict';
const locatePath = require('locate-path');
/**
* Locate the first existing file or directory synchronously from candidate paths.
* @param {Iterable<string>} paths
* @param {object} [options]
* @returns {string|undefined}
*/
function findFirstSync(paths, options) {
return locatePath.sync(paths, options);
}
/**
* Locate the first existing regular file synchronously.
* @param {Iterable<string>} paths
* @param {object} [options]
* @returns {string|undefined}
*/
function findFirstFileSync(paths, options) {
return locatePath.sync(paths, { ...options, type: 'file' });
}
/**
* Locate the first existing directory synchronously.
* @param {Iterable<string>} paths
* @param {object} [options]
* @returns {string|undefined}
*/
function findFirstDirectorySync(paths, options) {
return locatePath.sync(paths, { ...options, type: 'directory' });
}
module.exports = {
findFirstSync,
findFirstFileSync,
findFirstDirectorySync,
locatePathSync: locatePath.sync
};
{
"name": "sample-locate-path-sync",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "sample-locate-path-sync",
"version": "1.0.0",
"license": "MIT-0",
"dependencies": {
"locate-path": "6.0.0"
}
},
"node_modules/locate-path": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
"license": "MIT",
"dependencies": {
"p-locate": "^5.0.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/p-limit": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
"license": "MIT",
"dependencies": {
"yocto-queue": "^0.1.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/p-locate": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
"license": "MIT",
"dependencies": {
"p-limit": "^3.0.2"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/yocto-queue": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
"integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
"license": "MIT",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
}
}
}
{
"name": "sample-locate-path-sync",
"version": "1.0.0",
"description": "Minimal sample verifying locate-path.sync in pkg:npm/locate-path@6.0.0",
"main": "index.js",
"scripts": {
"test": "node test/contract.mjs"
},
"license": "MIT-0",
"dependencies": {
"locate-path": "6.0.0"
}
}
{
"schemaVersion": 1,
"goal": "verify locate-path.sync in pkg:npm/locate-path@6.0.0",
"kind": "HOW",
"packages": [
"pkg:npm/locate-path@6.0.0"
],
"symbols": [
"locate-path.sync"
]
}
import assert from 'node:assert';
import path from 'node:path';
import os from 'node:os';
import fs from 'node:fs';
import { createRequire } from 'node:module';
import locatePath from 'locate-path';
const require = createRequire(import.meta.url);
const {
findFirstSync,
findFirstFileSync,
findFirstDirectorySync,
locatePathSync
} = require('../index.js');
async function runContract() {
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'locate-path-sync-contract-'));
try {
const fileAlpha = path.join(tmpDir, 'alpha.txt');
const fileBeta = path.join(tmpDir, 'beta.txt');
const targetDir = path.join(tmpDir, 'subfolder');
const symlinkTarget = path.join(tmpDir, 'symlink.txt');
fs.writeFileSync(fileAlpha, 'alpha-data');
fs.writeFileSync(fileBeta, 'beta-data');
fs.mkdirSync(targetDir);
fs.symlinkSync(fileBeta, symlinkTarget);
// 1. locatePath.sync returns the first existing file in candidate paths
const res1 = locatePath.sync(['missing.txt', 'beta.txt', 'alpha.txt'], { cwd: tmpDir });
assert.strictEqual(res1, 'beta.txt', 'locatePath.sync should return first existing file');
// 2. locatePath.sync returns undefined when none of the candidate files exist
const res2 = locatePath.sync(['missing1.txt', 'missing2.txt'], { cwd: tmpDir });
assert.strictEqual(res2, undefined, 'locatePath.sync should return undefined when no files exist');
// 3. locatePath.sync resolves directory when type option is set to directory
const res3 = locatePath.sync(['missing.txt', 'subfolder'], { cwd: tmpDir, type: 'directory' });
assert.strictEqual(res3, 'subfolder', 'locatePath.sync should resolve existing directory');
// 4. locatePath.sync supports custom cwd option
const res4 = locatePath.sync(['alpha.txt'], { cwd: tmpDir });
assert.strictEqual(res4, 'alpha.txt', 'locatePath.sync should resolve path relative to custom cwd');
// 5. locatePath.sync ignores symlinks when allowSymlinks option is false
const res5 = locatePath.sync(['symlink.txt'], { cwd: tmpDir, allowSymlinks: false });
assert.strictEqual(res5, undefined, 'locatePath.sync should not resolve symlink when allowSymlinks is false');
// 6. locatePath.sync throws an error when an invalid type option is passed
assert.throws(
() => locatePath.sync(['alpha.txt'], { cwd: tmpDir, type: 'unsupported-type' }),
/Invalid type specified: unsupported-type/,
'locatePath.sync should throw on invalid type'
);
// 7. findFirstSync returns the first matching path synchronously
const res7 = findFirstSync(['missing.txt', 'alpha.txt'], { cwd: tmpDir });
assert.strictEqual(res7, 'alpha.txt', 'findFirstSync helper should return first matching path');
// 8. findFirstFileSync returns only existing file paths synchronously
const res8 = findFirstFileSync(['missing.txt', 'subfolder', 'alpha.txt'], { cwd: tmpDir });
assert.strictEqual(res8, 'alpha.txt', 'findFirstFileSync should return file and ignore directory');
// 9. findFirstDirectorySync returns only existing directory paths synchronously
const res9 = findFirstDirectorySync(['missing.txt', 'alpha.txt', 'subfolder'], { cwd: tmpDir });
assert.strictEqual(res9, 'subfolder', 'findFirstDirectorySync should return directory and ignore file');
// 10. locatePathSync exported alias matches locatePath.sync
assert.strictEqual(locatePathSync, locatePath.sync, 'locatePathSync should alias locatePath.sync');
console.log('All locate-path.sync contract assertions passed.');
} finally {
fs.rmSync(tmpDir, { recursive: true, force: true });
}
}
runContract().catch((err) => {
console.error('Contract failed:', err);
process.exit(1);
});
오리진 시더
익명