샘플
tmp 0.2.7: dir
검증된 샘플 — npm tmp 0.2.7: dir. node 22 · linux debian/x64 · docker에서 contract를 실행해 통과했습니다: tmp.dir asynchronously creates a unique temporary directory and…
sha256:c712025f055917ec02fbe1d671720bf105dc52b32582b9a38bceec2b2f364faa
이 네트워크가 제공하는 것은 하나입니다. 빌드되는 샘플. 샌드박스에서 돌리고 서명된 영수증을 보관합니다. 등급을 매기지 않고 무엇도 보증하지 않습니다 — 같은 코드가 당신 환경에서 빌드되는지는 측정한 적이 없습니다.
통과한 계약 영수증을 낸 서로 다른 서명 키의 수입니다. 하나면 작성자 혼자이고, 둘 이상이면 다른 사람도 빌드했다는 뜻입니다. 키는 스스로 만드는 것이고 뒤에 등록된 신원이 없으므로, 세는 것은 사람이 아니라 키입니다.
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-01 |
케이스
HOW- 목표
- verify tmp.dir in pkg:npm/tmp@0.2.7
- 패키지
- 심벌
-
- tmp.dir
- 생성일
- 2026-09-01T20:37:56Z
컨트랙트
- tmp.dir asynchronously creates a unique temporary directory and passes its path and a cleanup callback
- tmp.dir supports prefix and postfix options to customize the directory name
- tmp.dir supports mode option to set directory permissions
- tmp.dir with unsafeCleanup removes the directory and all contained files upon invoking the cleanup callback
- tmp.dir supports template option for custom directory naming patterns
파일
- PROMPT.md
- csx.json
- package-lock.json
- package.json
- spec.json
- src/index.mjs
- 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 tmp.dir in pkg:npm/tmp@0.2.7
Kind: HOW
Use EXACTLY these public packages and versions:
- pkg:npm/tmp@0.2.7
Demonstrate these symbols/APIs:
- tmp.dir
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:653b35aaeabee2438761985159b0ee2fd840204260e1f249ab10803810f1f6d2","contract":["tmp.dir asynchronously creates a unique temporary directory and passes its path and a cleanup callback","tmp.dir supports prefix and postfix options to customize the directory name","tmp.dir supports mode option to set directory permissions","tmp.dir with unsafeCleanup removes the directory and all contained files upon invoking the cleanup callback","tmp.dir supports template option for custom directory naming patterns"],"goal":"verify tmp.dir in pkg:npm/tmp@0.2.7","kind":"HOW","packages":["pkg:npm/tmp@0.2.7"],"schemaVersion":1,"symbols":["tmp.dir"]},"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/tmp@0.2.7"],"schemaVersion":1,"subject":"pkg:npm/tmp@0.2.7","symbols":["tmp.dir"],"verifierAdapter":"node-typescript@1"}
{
"name": "sample-tmp-dir",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "sample-tmp-dir",
"version": "1.0.0",
"license": "MIT-0",
"dependencies": {
"tmp": "0.2.7"
}
},
"node_modules/tmp": {
"version": "0.2.7",
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.7.tgz",
"integrity": "sha512-e0votIpp4Uo2AJYSzVHV6xCcawuiez3DzqDAbrTc3YxBkplN6e+dM13ZeIcZnDg/QpSuU2zfZ3rzwY8ukEnaXw==",
"license": "MIT",
"engines": {
"node": ">=14.14"
}
}
}
}
{
"name": "sample-tmp-dir",
"version": "1.0.0",
"type": "module",
"private": true,
"license": "MIT-0",
"scripts": {
"test": "node test/contract.mjs"
},
"dependencies": {
"tmp": "0.2.7"
}
}
{
"schemaVersion": 1,
"goal": "verify tmp.dir in pkg:npm/tmp@0.2.7",
"kind": "HOW",
"packages": [
"pkg:npm/tmp@0.2.7"
],
"symbols": [
"tmp.dir"
]
}
import tmp from 'tmp';
/**
* Create a temporary directory asynchronously using tmp.dir.
* @param {object|Function} optionsOrCb Options object or callback function
* @param {Function} [cb] Callback function (err, path, cleanupCallback)
*/
export function createTempDir(optionsOrCb, cb) {
if (typeof optionsOrCb === 'function') {
return tmp.dir(optionsOrCb);
}
return tmp.dir(optionsOrCb, cb);
}
/**
* Create a temporary directory returning a Promise with path and async cleanup function.
* @param {object} [options] Options for tmp.dir
* @returns {Promise<{ path: string, cleanup: () => Promise<void>, rawCleanup: Function }>}
*/
export function createTempDirPromise(options = {}) {
return new Promise((resolve, reject) => {
tmp.dir(options, (err, dirPath, cleanupCallback) => {
if (err) {
return reject(err);
}
const cleanup = () =>
new Promise((res, rej) => {
cleanupCallback((cErr) => {
if (cErr) return rej(cErr);
res();
});
});
resolve({ path: dirPath, cleanup, rawCleanup: cleanupCallback });
});
});
}
export { tmp };
export default tmp;
import assert from 'node:assert/strict';
import fs from 'node:fs';
import path from 'node:path';
import tmp, { createTempDir, createTempDirPromise } from '../src/index.mjs';
async function runTests() {
// 1. tmp.dir creates a temporary directory and passes dirPath and async cleanupCallback
await new Promise((resolve, reject) => {
tmp.dir((err, dirPath, cleanupCallback) => {
if (err) return reject(err);
try {
assert.ok(typeof dirPath === 'string', 'dirPath must be a string');
assert.ok(fs.existsSync(dirPath), 'directory must exist on filesystem');
const stat = fs.statSync(dirPath);
assert.ok(stat.isDirectory(), 'created path must be a directory');
assert.ok(typeof cleanupCallback === 'function', 'cleanupCallback must be a function');
cleanupCallback((cleanupErr) => {
if (cleanupErr) return reject(cleanupErr);
try {
assert.strictEqual(fs.existsSync(dirPath), false, 'cleanupCallback must remove the directory');
resolve();
} catch (e) {
reject(e);
}
});
} catch (e) {
reject(e);
}
});
});
// 2. tmp.dir supports prefix and postfix options
await new Promise((resolve, reject) => {
tmp.dir({ prefix: 'customPrefix_', postfix: '_customPostfix' }, (err, dirPath, cleanupCallback) => {
if (err) return reject(err);
try {
const baseName = path.basename(dirPath);
assert.ok(baseName.startsWith('customPrefix_'), 'directory name must start with prefix');
assert.ok(baseName.endsWith('_customPostfix'), 'directory name must end with postfix');
assert.ok(fs.existsSync(dirPath), 'directory must exist');
cleanupCallback((cleanupErr) => {
if (cleanupErr) return reject(cleanupErr);
try {
assert.strictEqual(fs.existsSync(dirPath), false, 'directory must be removed after cleanup');
resolve();
} catch (e) {
reject(e);
}
});
} catch (e) {
reject(e);
}
});
});
// 3. tmp.dir supports mode option to set directory permissions
await new Promise((resolve, reject) => {
const desiredMode = 0o700;
tmp.dir({ mode: desiredMode }, (err, dirPath, cleanupCallback) => {
if (err) return reject(err);
try {
const stat = fs.statSync(dirPath);
const actualMode = stat.mode & 0o777;
assert.strictEqual(actualMode, desiredMode, 'directory mode must match configured mode');
cleanupCallback((cleanupErr) => {
if (cleanupErr) return reject(cleanupErr);
try {
assert.strictEqual(fs.existsSync(dirPath), false);
resolve();
} catch (e) {
reject(e);
}
});
} catch (e) {
reject(e);
}
});
});
// 4. tmp.dir with unsafeCleanup removes directory containing files on cleanup
await new Promise((resolve, reject) => {
tmp.dir({ unsafeCleanup: true }, (err, dirPath, cleanupCallback) => {
if (err) return reject(err);
try {
const nestedFile = path.join(dirPath, 'nested-file.txt');
fs.writeFileSync(nestedFile, 'sample content', 'utf8');
assert.ok(fs.existsSync(nestedFile), 'nested file must exist before cleanup');
cleanupCallback((cleanupErr) => {
if (cleanupErr) return reject(cleanupErr);
try {
assert.strictEqual(fs.existsSync(dirPath), false, 'unsafeCleanup must remove directory with files');
resolve();
} catch (e) {
reject(e);
}
});
} catch (e) {
reject(e);
}
});
});
// 5. tmp.dir supports template option
await new Promise((resolve, reject) => {
tmp.dir({ template: 'tmpl-XXXXXX' }, (err, dirPath, cleanupCallback) => {
if (err) return reject(err);
try {
const baseName = path.basename(dirPath);
assert.ok(baseName.startsWith('tmpl-'), 'directory name must follow template prefix');
assert.ok(fs.existsSync(dirPath), 'directory must exist');
cleanupCallback((cleanupErr) => {
if (cleanupErr) return reject(cleanupErr);
try {
assert.strictEqual(fs.existsSync(dirPath), false);
resolve();
} catch (e) {
reject(e);
}
});
} catch (e) {
reject(e);
}
});
});
// 6. createTempDir helper works with callback
await new Promise((resolve, reject) => {
createTempDir((err, dirPath, cleanupCallback) => {
if (err) return reject(err);
try {
assert.ok(fs.existsSync(dirPath), 'directory from createTempDir must exist');
cleanupCallback((cleanupErr) => {
if (cleanupErr) return reject(cleanupErr);
try {
assert.strictEqual(fs.existsSync(dirPath), false);
resolve();
} catch (e) {
reject(e);
}
});
} catch (e) {
reject(e);
}
});
});
// 7. createTempDirPromise returns promise resolving to path and cleanup function
{
const { path: dirPath, cleanup } = await createTempDirPromise({ prefix: 'prom-' });
assert.ok(typeof dirPath === 'string', 'resolved path must be string');
assert.ok(path.basename(dirPath).startsWith('prom-'), 'prefix must match');
assert.ok(fs.existsSync(dirPath), 'directory must exist');
await cleanup();
assert.strictEqual(fs.existsSync(dirPath), false, 'cleanup must remove directory');
}
console.log('All contract assertions passed.');
}
runTests().catch((err) => {
console.error('Contract test failed:', err);
process.exit(1);
});
오리진 시더
익명